Skip to content

Commit

Permalink
Fix for dart-archive#672- update the directions in the getInstallInst…
Browse files Browse the repository at this point in the history
…ructions() calls
  • Loading branch information
jwren committed Jul 13, 2020
1 parent e6b2feb commit 961bd8c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/src/generators/console_full.dart
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,5 @@ class ConsoleFullGenerator extends DefaultGenerator {

@override
String getInstallInstructions() => '${super.getInstallInstructions()}\n'
'run your app using `dart ${entrypoint.path}`.';
'run your app using `dart run`.';
}
2 changes: 1 addition & 1 deletion lib/src/generators/console_simple.dart
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,5 @@ class ConsoleSimpleGenerator extends DefaultGenerator {

@override
String getInstallInstructions() => '${super.getInstallInstructions()}\n'
'run your app using `dart ${entrypoint.path}`.';
'run your app using `dart run`.';
}
2 changes: 1 addition & 1 deletion lib/src/generators/server_shelf.dart
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,5 @@ class ServerShelfGenerator extends DefaultGenerator {

@override
String getInstallInstructions() => '${super.getInstallInstructions()}\n'
'run your app via `dart ${entrypoint.path}`.';
'run your app using `dart run`.';
}

0 comments on commit 961bd8c

Please sign in to comment.