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

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

Issue 49453003: Revise unhandled args patch. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Make command properties consistent. 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
« no previous file with comments | « no previous file | sdk/lib/_internal/pub/lib/src/command/build.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 e8b7ed0e09fa14a9589802d0ed8de194b61dd5bc..796504f7aad55562459f65fcf3a0239d05dc6701 100644
--- a/sdk/lib/_internal/pub/lib/src/command.dart
+++ b/sdk/lib/_internal/pub/lib/src/command.dart
@@ -123,7 +123,8 @@ and include the results in a bug report on http://dartbug.com/new.
new Future.sync(() {
// Make sure there aren't unexpected arguments.
if (!takesArguments && commandOptions.rest.isNotEmpty) {
- log.error('Command does not take any arguments.');
+ log.error('Command "${commandOptions.name}" does not take any '
+ 'arguments.');
this.printUsage();
return flushThenExit(exit_codes.USAGE);
}
« no previous file with comments | « no previous file | sdk/lib/_internal/pub/lib/src/command/build.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698