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

Unified Diff: utils/pub/system_cache.dart

Issue 12079112: Make a bunch of stuff in pub synchronous. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 11 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/system_cache.dart
diff --git a/utils/pub/system_cache.dart b/utils/pub/system_cache.dart
index 1e26554cd72a177088c1a83779d6940b07e50b1d..e0d13457a399a07b9ff3c827c79571223e837366 100644
--- a/utils/pub/system_cache.dart
+++ b/utils/pub/system_cache.dart
@@ -84,7 +84,9 @@ class SystemCache {
/// temp directory to ensure that it's on the same volume as the pub system
/// cache so that it can move the directory from it.
Future<Directory> createTempDir() {
- return ensureDir(tempDir).then((temp) {
+ // Make sure all errors propagate through future.
+ return defer(() {
+ var temp = ensureDir(tempDir);
return io.createTempDir(join(temp, 'dir'));
});
}
@@ -92,8 +94,9 @@ class SystemCache {
/// Delete's the system cache's internal temp directory.
Future deleteTempDir() {
log.fine('Clean up system cache temp directory $tempDir.');
- return dirExists(tempDir).then((exists) {
- if (!exists) return;
+ // Make sure all errors propagate through future.
+ return defer(() {
+ if (!dirExists(tempDir)) return;
return deleteDir(tempDir);
});
}

Powered by Google App Engine
This is Rietveld 408576698