| Index: sdk/lib/_internal/pub/lib/src/command.dart
|
| diff --git a/sdk/lib/_internal/pub/lib/src/command.dart b/sdk/lib/_internal/pub/lib/src/command.dart
|
| index 6b1e126328412ef5ebffd4a7103b2c256bb27335..fe899cdbae66a62604e1bd516d4f4c52786c2c63 100644
|
| --- a/sdk/lib/_internal/pub/lib/src/command.dart
|
| +++ b/sdk/lib/_internal/pub/lib/src/command.dart
|
| @@ -11,8 +11,8 @@ import 'package:args/args.dart';
|
| import 'package:path/path.dart' as path;
|
| import 'package:stack_trace/stack_trace.dart';
|
|
|
| +import 'command/build.dart';
|
| import 'command/cache.dart';
|
| -import 'command/deploy.dart';
|
| import 'command/get.dart';
|
| import 'command/help.dart';
|
| import 'command/lish.dart';
|
| @@ -174,8 +174,8 @@ and include the results in a bug report on http://dartbug.com/new.
|
|
|
| _initCommands() {
|
| var commands = {
|
| + 'build': new BuildCommand(),
|
| 'cache': new CacheCommand(),
|
| - 'deploy': new DeployCommand(),
|
| 'get': new GetCommand(),
|
| 'help': new HelpCommand(),
|
| 'list-package-dirs': new ListPackageDirsCommand(),
|
|
|