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

Unified Diff: utils/pub/pub.dart

Issue 10386021: Add a Pub source that checks packages out from Git. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 7 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: utils/pub/pub.dart
diff --git a/utils/pub/pub.dart b/utils/pub/pub.dart
index 45c6c9815aad625a4abd0c22919f842aea331d9e..23037fef81e2a7202ab0d732328cd3ab222bd37d 100644
--- a/utils/pub/pub.dart
+++ b/utils/pub/pub.dart
@@ -20,7 +20,9 @@
#source('command_version.dart');
#source('package.dart');
#source('source.dart');
+#source('source_registry.dart');
#source('sdk_source.dart');
+#source('git_source.dart');
main() {
final args = new Options().arguments;
@@ -72,8 +74,9 @@ main() {
// TODO(rnystrom): Do we want this to be global?
Bob Nystrom 2012/05/08 17:01:49 If you don't mind, remove this TODO. I think we've
nweiz 2012/05/09 00:21:04 Done.
final cache = new SystemCache(cacheDir);
-
- Source.defaultSource = new SdkSource(sdkDir);
+ cache.sources.register(new SdkSource(sdkDir));
+ cache.sources.register(new GitSource());
+ cache.sources.setDefault('sdk');
// Select the command.
final command = commands[args[0]];
@@ -137,7 +140,7 @@ class PubCommand {
// TODO(rnystrom): Will eventually need better logic to walk up
// subdirectories until we hit one that looks package-like. For now, just
// assume the cwd is it.
- Package.load(workingDir).then((pkg) {
+ Package.load(workingDir, cache.sources).then((pkg) {
packagesDir = new PackagesDir(pkg, cache);
onRun();
});

Powered by Google App Engine
This is Rietveld 408576698