| Index: sdk/lib/_internal/pub/lib/src/command/global_run.dart
|
| diff --git a/sdk/lib/_internal/pub/lib/src/command/global_run.dart b/sdk/lib/_internal/pub/lib/src/command/global_run.dart
|
| index d0f35ba70af58aaaf3b117f71c3343d1fc34ecc5..86eb30bcae1ebd7975633facd7c66f8fb4e83aae 100644
|
| --- a/sdk/lib/_internal/pub/lib/src/command/global_run.dart
|
| +++ b/sdk/lib/_internal/pub/lib/src/command/global_run.dart
|
| @@ -20,7 +20,7 @@ class GlobalRunCommand extends PubCommand {
|
| "NOTE: We are currently optimizing this command's startup time.";
|
| String get usage => "pub global run <package>:<executable> [args...]";
|
|
|
| - Future onRun() {
|
| + Future onRun() async {
|
| if (commandOptions.rest.isEmpty) {
|
| usageError("Must specify an executable to run.");
|
| }
|
| @@ -38,9 +38,9 @@ class GlobalRunCommand extends PubCommand {
|
|
|
| var args = commandOptions.rest.skip(1).toList();
|
|
|
| - return globals.find(package).then((entrypoint) {
|
| - return runExecutable(this, entrypoint, package, executable, args,
|
| - isGlobal: true);
|
| - }).then(flushThenExit);
|
| + var entrypoint = await globals.find(package);
|
| + var exitCode = await runExecutable(this, entrypoint, package, executable,
|
| + args, isGlobal: true);
|
| + await flushThenExit(exitCode);
|
| }
|
| }
|
|
|