Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: incorrect fvm spawn example #823

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/pages/documentation/guides/basic-commands.mdx
Original file line number Diff line number Diff line change
@@ -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
@@ -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
```
```