[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.
This commit is contained in:
Alexander Biggs 2022-09-06 10:37:14 -07:00 committed by GitHub
parent 2fd7dde9c8
commit e852d55ed0

View File

@ -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 <integration_test_folder_name> --no-lto
$ENGINE_DIR/flutter/tools/fuchsia/devshell/run_integration_test.sh <integration_test_folder_name> --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
```