Skip to content

Commit 89f8035

Browse files
Merge pull request #634 from imtushardave/fix_5277_flutter_install_command_from_pub_get_to_pub_add
fix flutter install command : pub get -> pub add
2 parents 0c86a8a + c178b44 commit 89f8035

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

templates/dart/README.md.twig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ dependencies:
3535
You can install packages from the command line:
3636

3737
```bash
38-
pub get {{ language.params.packageName }}
38+
dart pub add {{ language.params.packageName }}
3939
```
4040

4141
{% if sdk.gettingStarted %}

templates/flutter/README.md.twig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ dependencies:
3535
You can install packages from the command line:
3636

3737
```bash
38-
pub get {{ language.params.packageName }}
38+
flutter pub add {{ language.params.packageName }}
3939
```
4040

4141
{% if sdk.gettingStarted %}

0 commit comments

Comments
 (0)