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]; |