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

Unified Diff: sdk/lib/_internal/pub/lib/src/command/cache.dart

Issue 27000011: Exit with an error on unexpected command line arguments. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 2 months 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
Index: sdk/lib/_internal/pub/lib/src/command/cache.dart
diff --git a/sdk/lib/_internal/pub/lib/src/command/cache.dart b/sdk/lib/_internal/pub/lib/src/command/cache.dart
index ec0d181328407103251b819838d7e84f7a067144..29ad06bd4ed5b9cd87b08f060f340a085929fba7 100644
--- a/sdk/lib/_internal/pub/lib/src/command/cache.dart
+++ b/sdk/lib/_internal/pub/lib/src/command/cache.dart
@@ -18,8 +18,10 @@ class CacheCommand extends PubCommand {
String get usage => 'pub cache list';
bool get hidden => true;
bool get requiresEntrypoint => false;
+ bool get takesArguments => true;
Future onRun() {
+ // TODO(rnystrom): Use subcommand for "list".
if (commandOptions.rest.length != 1) {
log.error('The cache command expects one argument.');
this.printUsage();

Powered by Google App Engine
This is Rietveld 408576698