Skip to content
Snippets Groups Projects
Commit d06805cf authored by ajohnsen@google.com's avatar ajohnsen@google.com
Browse files

Fix recursive directory-deletion of top-level files/links.

BUG=

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge@21060 260f80e4-7a28-3924-810f-c04153c831b5
parent 6991fe1b
No related branches found
No related tags found
No related merge requests found
...@@ -188,12 +188,7 @@ bool dirExists(String dir) => new Directory(dir).existsSync(); ...@@ -188,12 +188,7 @@ bool dirExists(String dir) => new Directory(dir).existsSync();
void deleteEntry(String path) { void deleteEntry(String path) {
if (linkExists(path)) { if (linkExists(path)) {
log.io("Deleting link $path."); log.io("Deleting link $path.");
if (Platform.operatingSystem == 'windows') { new Link(path).deleteSync();
// TODO(nweiz): remove this when issue 9278 is fixed.
new Directory(path).deleteSync();
} else {
new Link(path).deleteSync();
}
} else if (dirExists(path)) { } else if (dirExists(path)) {
log.io("Deleting directory $path."); log.io("Deleting directory $path.");
new Directory(path).deleteSync(recursive: true); new Directory(path).deleteSync(recursive: true);
......
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