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

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: Revise. 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') | no next file with comments »
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..65f0507f15a2168264ea18859ba1ae2d7e4125b3 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.");
+ log.fine("Creating symlink ($to is a 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') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698