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

Unified Diff: utils/pub/system_cache.dart

Issue 10577009: Give cached sources control over their cache directories. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 6 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/source.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: utils/pub/system_cache.dart
diff --git a/utils/pub/system_cache.dart b/utils/pub/system_cache.dart
index 6eed8ec38ee73bf149d50d00e0ff801e5d552fec..18fa1dbc0d5f61fc8d703fd54f9d0de25f441c2c 100644
--- a/utils/pub/system_cache.dart
+++ b/utils/pub/system_cache.dart
@@ -70,7 +70,8 @@ class SystemCache {
var pending = _pendingInstalls[id];
if (pending != null) return pending;
- var path = join(rootDir, id.source.name, id.source.packageName(id));
+ var sourceDir = join(rootDir, id.source.name);
+ var path = id.source.systemCacheDirectory(id, sourceDir);
var future = exists(path).chain((exists) {
// TODO(nweiz): better error handling
if (exists) throw 'Package $id is already installed.';
« no previous file with comments | « utils/pub/source.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698