Index: utils/pub/command_lish.dart |
diff --git a/utils/pub/command_lish.dart b/utils/pub/command_lish.dart |
index 34ba1b43127b42d2213af7cdf89bd933906facfd..6df21be62bd13afb31ebdbeab52f4d0142ebc357 100644 |
--- a/utils/pub/command_lish.dart |
+++ b/utils/pub/command_lish.dart |
@@ -18,8 +18,9 @@ import 'oauth2.dart' as oauth2; |
// 6949. |
/// Handles the `lish` and `publish` pub commands. |
class LishCommand extends PubCommand { |
- String get description => "publish the current package to pub.dartlang.org"; |
- String get usage => "pub lish [options]"; |
+ final description = "publish the current package to pub.dartlang.org"; |
+ final usage = "pub publish [options]"; |
+ final aliases = const ["lish", "lush"]; |
ArgParser get commandParser { |
var parser = new ArgParser(); |