Skip to content

Commit

Permalink
fix incorrect fvm spawn example
Browse files Browse the repository at this point in the history
the command should be fvm spawn x.x.x build not fvm spawn x.x.x flutter build
  • Loading branch information
GChanathip authored Feb 16, 2025
1 parent 863c977 commit 40c7749
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/pages/documentation/guides/basic-commands.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -268,14 +268,14 @@ This command is particularly useful when you need to run a Flutter command (such
To build your Flutter project using version `2.5.0` of the Flutter SDK:

```bash
fvm spawn 2.5.0 flutter build
fvm spawn 2.5.0 build
```

**Running Tests with a Different SDK Version**:
If you need to run tests using a particular Flutter SDK version:

```bash
fvm spawn 2.2.3 flutter test
fvm spawn 2.2.3 test
```

## Exec
Expand Down Expand Up @@ -359,4 +359,4 @@ If you need to run tests using the Flutter SDK version associated with the `stag

```bash
> fvm flavor staging flutter test
```
```

0 comments on commit 40c7749

Please sign in to comment.