Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(16)

Unified Diff: utils/pub/pub.dart

Issue 11413215: Hide aliases when printing 'pub --help'. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: utils/pub/pub.dart
diff --git a/utils/pub/pub.dart b/utils/pub/pub.dart
index df40c064e4e92954fbf3e83c9b3ad327dd12aaa1..9bb12ee39ae268de0dd126c1d1ad6a48f755dee9 100644
--- a/utils/pub/pub.dart
+++ b/utils/pub/pub.dart
@@ -134,6 +134,8 @@ void printUsage([String description = 'Pub is a package manager for Dart.']) {
int length = 0;
var names = <String>[];
for (var command in pubCommands.keys) {
+ // Hide aliases.
+ if (pubCommands[command].aliases.indexOf(command) >= 0) continue;
length = max(length, command.length);
names.add(command);
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698