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

Unified Diff: sdk/lib/_internal/pub/bin/pub.dart

Issue 50533005: Remove uses of dart:io Options from pub. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Remove global static copy of args. 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.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/_internal/pub/bin/pub.dart
diff --git a/sdk/lib/_internal/pub/bin/pub.dart b/sdk/lib/_internal/pub/bin/pub.dart
index ecd58bdee2576c1763be53019012d25eca57362a..ca88d38d97c0184a46ef0743d9a29212c7ac5ffa 100644
--- a/sdk/lib/_internal/pub/bin/pub.dart
+++ b/sdk/lib/_internal/pub/bin/pub.dart
@@ -18,11 +18,11 @@ import '../lib/src/utils.dart';
final pubArgParser = initArgParser();
-void main() {
+void main(List<String> arguments) {
ArgResults options;
try {
- options = pubArgParser.parse(new Options().arguments);
+ options = pubArgParser.parse(arguments);
} on FormatException catch (e) {
log.error(e.message);
log.error('Run "pub help" to see available options.');
@@ -84,7 +84,7 @@ void main() {
}
validatePlatform().then((_) {
- PubCommand.commands[options.command.name].run(cacheDir, options);
+ PubCommand.commands[options.command.name].run(cacheDir, options, arguments);
});
}
« no previous file with comments | « no previous file | sdk/lib/_internal/pub/lib/src/command.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698