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

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

Issue 14680005: Add offline support to pub install and update. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 8 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/bin/pub.dart
diff --git a/sdk/lib/_internal/pub/bin/pub.dart b/sdk/lib/_internal/pub/bin/pub.dart
index 0d6e72a33cf395a999380f5148fd1bb862960973..29a160a9018016686b663223b1573f5b52df236c 100644
--- a/sdk/lib/_internal/pub/bin/pub.dart
+++ b/sdk/lib/_internal/pub/bin/pub.dart
@@ -91,8 +91,6 @@ void main() {
}
validatePlatform().then((_) {
- var cache = new SystemCache.withSources(cacheDir);
-
// Select the command.
var command = PubCommand.commands[globalOptions.rest[0]];
if (command == null) {
@@ -103,7 +101,7 @@ void main() {
}
var commandArgs = globalOptions.rest.sublist(1);
- command.run(cache, globalOptions, commandArgs);
+ command.run(cacheDir, globalOptions, commandArgs);
});
}
« no previous file with comments | « no previous file | sdk/lib/_internal/pub/lib/src/command.dart » ('j') | sdk/lib/_internal/pub/lib/src/command.dart » ('J')

Powered by Google App Engine
This is Rietveld 408576698