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

Unified Diff: utils/pub/io.dart

Issue 12208138: Take Sam Elkhateeb's path for "path" dependencies and clean it up some. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Remove a TODO. Created 7 years, 10 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 | « no previous file | utils/pub/path_source.dart » ('j') | utils/pub/path_source.dart » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: utils/pub/io.dart
diff --git a/utils/pub/io.dart b/utils/pub/io.dart
index 0eab87a970e42ce138d17e442e2c7bf475ab76cb..434507c5ecaa8941ee129d58b05b10773e76c915 100644
--- a/utils/pub/io.dart
+++ b/utils/pub/io.dart
@@ -315,7 +315,7 @@ Future<File> createSymlink(from, to) {
from = _getPath(from);
to = _getPath(to);
- log.fine("Create symlink $from -> $to.");
nweiz 2013/02/13 00:13:56 The fact that this plausibly makes sense both ways
Bob Nystrom 2013/02/13 18:28:36 Done.
+ log.fine("Create symlink $to -> $from.");
var command = 'ln';
var args = ['-s', from, to];
« no previous file with comments | « no previous file | utils/pub/path_source.dart » ('j') | utils/pub/path_source.dart » ('J')

Powered by Google App Engine
This is Rietveld 408576698