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

Unified Diff: sdk/lib/_internal/pub/lib/src/system_cache.dart

Issue 25385004: Fix pub to work with new Directory.createSystemTemp. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 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
Index: sdk/lib/_internal/pub/lib/src/system_cache.dart
diff --git a/sdk/lib/_internal/pub/lib/src/system_cache.dart b/sdk/lib/_internal/pub/lib/src/system_cache.dart
index 7dafb8c2b161689fa9a2ab48f62c9bb768afe972..63b98178b8776cbe7ade07778e94df0b1add105f 100644
--- a/sdk/lib/_internal/pub/lib/src/system_cache.dart
+++ b/sdk/lib/_internal/pub/lib/src/system_cache.dart
@@ -96,7 +96,7 @@ class SystemCache {
/// cache so that it can move the directory from it.
String createTempDir() {
var temp = ensureDir(tempDir);
- return io.createTempDir(path.join(temp, 'dir'));
+ return io.createTempDir(temp, 'dir');
}
/// Deletes the system cache's internal temp directory.

Powered by Google App Engine
This is Rietveld 408576698