| 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 fb0a8423390ce0c8568814eb6e3ee2368fed516c..68bbf320f0bcf9cb11ae7081bde9b9ab646f27ee 100644
|
| --- a/sdk/lib/_internal/pub/lib/src/command.dart
|
| +++ b/sdk/lib/_internal/pub/lib/src/command.dart
|
| @@ -9,6 +9,7 @@ import 'package:args/args.dart';
|
| import 'package:pathos/path.dart' as path;
|
|
|
| import 'command_cache.dart';
|
| +import 'command_deploy.dart';
|
| import 'command_help.dart';
|
| import 'command_install.dart';
|
| import 'command_lish.dart';
|
| @@ -29,6 +30,7 @@ abstract class PubCommand {
|
| static Map<String, PubCommand> get commands {
|
| var commands = {
|
| 'cache': new CacheCommand(),
|
| + 'deploy': new DeployCommand(),
|
| 'help': new HelpCommand(),
|
| 'install': new InstallCommand(),
|
| 'publish': new LishCommand(),
|
|
|