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

Unified Diff: utils/pub/io.dart

Issue 10790079: Use a lockfile to persist Pub's installed version constellation. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 5 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/io.dart
diff --git a/utils/pub/io.dart b/utils/pub/io.dart
index a5246c2911c75f6a7b01b075637b1ce5781b9c05..c034ff13df318f5b28d978920786c8a210344010 100644
--- a/utils/pub/io.dart
+++ b/utils/pub/io.dart
@@ -129,8 +129,7 @@ Future<File> writeTextFile(file, String contents) {
* [Future] that completes when the deletion is done.
*/
Future<Directory> deleteFile(file) {
- file = _getFile(file);
- return file.delete();
+ return new File(_getPath(file)).delete();
}
/**

Powered by Google App Engine
This is Rietveld 408576698