| Index: sdk/lib/_internal/pub/lib/src/command/global.dart
|
| diff --git a/sdk/lib/_internal/pub/lib/src/command/global.dart b/sdk/lib/_internal/pub/lib/src/command/global.dart
|
| index aa1ee2493d4ec33d775f0d66623614bc23c8a79d..8c2105ca6ef019568f37584970d7f3687d94d8a1 100644
|
| --- a/sdk/lib/_internal/pub/lib/src/command/global.dart
|
| +++ b/sdk/lib/_internal/pub/lib/src/command/global.dart
|
| @@ -7,6 +7,7 @@ library pub.command.global;
|
| import '../command.dart';
|
| import 'global_activate.dart';
|
| import 'global_deactivate.dart';
|
| +import 'global_run.dart';
|
|
|
| /// Handles the `global` pub command.
|
| class GlobalCommand extends PubCommand {
|
| @@ -15,6 +16,7 @@ class GlobalCommand extends PubCommand {
|
|
|
| final subcommands = {
|
| "activate": new GlobalActivateCommand(),
|
| - "deactivate": new GlobalDeactivateCommand()
|
| + "deactivate": new GlobalDeactivateCommand(),
|
| + "run": new GlobalRunCommand()
|
| };
|
| }
|
|
|