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

Unified Diff: sdk/lib/_internal/pub/lib/src/command/help.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/help.dart
diff --git a/sdk/lib/_internal/pub/lib/src/command/help.dart b/sdk/lib/_internal/pub/lib/src/command/help.dart
index 191be6576a09e81ad338a04d3a03c09267d1ce65..a69171de9096682fe5bd0ec105a40ca6be421575 100644
--- a/sdk/lib/_internal/pub/lib/src/command/help.dart
+++ b/sdk/lib/_internal/pub/lib/src/command/help.dart
@@ -16,6 +16,7 @@ class HelpCommand extends PubCommand {
String get description => "Display help information for Pub.";
String get usage => 'pub help [command]';
bool get requiresEntrypoint => false;
+ bool get takesArguments => true;
Future onRun() {
if (commandOptions.rest.isEmpty) {

Powered by Google App Engine
This is Rietveld 408576698