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

Unified Diff: utils/pub/pub.dart

Issue 12316155: Make arg parser return growable list of rest arguments. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 10 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 | « pkg/args/lib/src/parser.dart ('k') | 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 122a962d39ec2dec8aa18411fc563a8383e2bab1..f18d9c9a45c6a98561859d631ae03ffbf993c1eb 100644
--- a/utils/pub/pub.dart
+++ b/utils/pub/pub.dart
@@ -227,7 +227,7 @@ abstract class PubCommand {
globalOptions = globalOptions_;
try {
- commandOptions = commandParser.parse(commandArgs);
+ commandOptions = commandParser.parse(commandArgs);
} on FormatException catch (e) {
log.error(e.message);
log.error('Use "pub help" for more information.');
« no previous file with comments | « pkg/args/lib/src/parser.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698