| Index: utils/pub/command_install.dart
|
| diff --git a/utils/pub/command_install.dart b/utils/pub/command_install.dart
|
| index a582e10dbaf595e1bd9180639930d4e4d89178c8..a1c20992af04814038ccd0489f5dd67e3a6015da 100644
|
| --- a/utils/pub/command_install.dart
|
| +++ b/utils/pub/command_install.dart
|
| @@ -6,8 +6,8 @@
|
| class InstallCommand extends PubCommand {
|
| String get description() => "install the current package's dependencies";
|
|
|
| - void onRun() {
|
| - entrypoint.installDependencies().then((_) {
|
| + Future onRun() {
|
| + return entrypoint.installDependencies().transform((_) {
|
| print('Dependencies installed!');
|
| });
|
| }
|
|
|