Skip to content
Snippets Groups Projects
Commit 4d781df3 authored by rnystrom@google.com's avatar rnystrom@google.com Committed by Natalie Weizenbaum
Browse files

Resolve symlinks before determining relative path.

BUG=https://code.google.com/p/dart/issues/detail?id=9418
R=nweiz@google.com

Review URL: https://codereview.chromium.org//331673003

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge@37283 260f80e4-7a28-3924-810f-c04153c831b5
parent c905a0e6
No related branches found
No related tags found
No related merge requests found
......@@ -351,8 +351,11 @@ void createSymlink(String target, String symlink,
if (Platform.operatingSystem == 'windows') {
target = path.normalize(path.absolute(target));
} else {
target = path.normalize(
path.relative(target, from: path.dirname(symlink)));
// If the directory where we're creating the symlink was itself reached
// by traversing a symlink, we want the relative path to be relative to
// it's actual location, not the one we went through to get to it.
var symlinkDir = canonicalize(path.dirname(symlink));
target = path.normalize(path.relative(target, from: symlinkDir));
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment