From e852d55ed08667206422f87506fb0b720fd697de Mon Sep 17 00:00:00 2001 From: Alexander Biggs Date: Tue, 6 Sep 2022 10:37:14 -0700 Subject: [PATCH] [fuchsia] Fix some typos in code blocks. (flutter/engine#35946) The $s get copied by Github's copy commands, so I removed them. But then I also forgot some $s on environment variables. --- .../fuchsia/flutter/tests/integration/README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/engine/src/flutter/shell/platform/fuchsia/flutter/tests/integration/README.md b/engine/src/flutter/shell/platform/fuchsia/flutter/tests/integration/README.md index 6b045a5436d..582230c0a8b 100644 --- a/engine/src/flutter/shell/platform/fuchsia/flutter/tests/integration/README.md +++ b/engine/src/flutter/shell/platform/fuchsia/flutter/tests/integration/README.md @@ -4,20 +4,20 @@ To run the Flutter runner integration tests locally, first start a Fuchsia package server: ```shell -$ cd "$FUCHSIA_DIR" -$ fx serve +cd "$FUCHSIA_DIR" +fx serve ``` Then run the integration test: ```shell -$ ENGINE_DIR/flutter/tools/fuchsia/devshell/run_integration_test.sh --no-lto +$ENGINE_DIR/flutter/tools/fuchsia/devshell/run_integration_test.sh --no-lto ``` For example, to run the `embedder` integration test: ```shell -$ ENGINE_DIR/flutter/tools/fuchsia/devshell/run_integration_test.sh embedder --no-lto +$ENGINE_DIR/flutter/tools/fuchsia/devshell/run_integration_test.sh embedder --no-lto ``` Command-line options: @@ -43,5 +43,5 @@ once, you don't need to build Fuchsia or start the emulator anymore, and can pas `--skip-fuchsia-build` and `--skip-fuchsia-emu` to skip those steps. ```shell -$ ENGINE_DIR/flutter/tools/fuchsia/devshell/run_integration_test.sh embedder --no-lto --skip-fuchsia-build --skip-fuchsia-emu +$ENGINE_DIR/flutter/tools/fuchsia/devshell/run_integration_test.sh embedder --no-lto --skip-fuchsia-build --skip-fuchsia-emu ```