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

Unified Diff: utils/pub/git_source.dart

Issue 10938003: Don't extract the name of a package from its description. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Code review changes Created 8 years, 3 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 | « utils/pub/entrypoint.dart ('k') | utils/pub/hosted_source.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: utils/pub/git_source.dart
diff --git a/utils/pub/git_source.dart b/utils/pub/git_source.dart
index 030e743e6df7a9d3400e6e1df92a5c0316a95fc2..e0737e8e02c795679683f21e30f165a3ea8e4581 100644
--- a/utils/pub/git_source.dart
+++ b/utils/pub/git_source.dart
@@ -57,16 +57,9 @@ class GitSource extends Source {
var ref = _getEffectiveRef(id);
if (ref == 'HEAD') return new Future.immediate(null);
return _checkOut(revisionCachePath, ref);
- }).chain((_) => Package.load(revisionCachePath, systemCache.sources));
- }
-
- /**
- * The package name of a Git repo is the name of the directory into which
- * it'll be cloned.
- */
- String packageName(description) {
- return basename(_getUrl(description)
- .replaceFirst(const RegExp(@"(\.git)?/?$"), ""));
+ }).chain((_) {
+ return Package.load(id.name, revisionCachePath, systemCache.sources);
+ });
}
/**
@@ -109,7 +102,7 @@ class GitSource extends Source {
return _revisionAt(id).transform((revision) {
var description = {'url': _getUrl(id), 'ref': _getRef(id)};
description['resolved-ref'] = revision;
- return new PackageId(this, id.version, description);
+ return new PackageId(id.name, this, id.version, description);
});
}
« no previous file with comments | « utils/pub/entrypoint.dart ('k') | utils/pub/hosted_source.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698