OLD | NEW |
---|---|
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
4 | 4 |
5 library entrypoint; | 5 library entrypoint; |
6 | 6 |
7 import 'dart:async'; | 7 import 'dart:async'; |
8 | 8 |
9 import '../../pkg/pathos/lib/path.dart' as path; | 9 import '../../pkg/pathos/lib/path.dart' as path; |
10 | 10 |
(...skipping 279 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
290 }).toList()); | 290 }).toList()); |
291 }).then(flatten); | 291 }).then(flatten); |
292 } | 292 } |
293 | 293 |
294 /// Creates a symlink to the `packages` directory in [dir]. Will replace one | 294 /// Creates a symlink to the `packages` directory in [dir]. Will replace one |
295 /// if already there. | 295 /// if already there. |
296 Future _linkSecondaryPackageDir(String dir) { | 296 Future _linkSecondaryPackageDir(String dir) { |
297 return defer(() { | 297 return defer(() { |
298 var symlink = path.join(dir, 'packages'); | 298 var symlink = path.join(dir, 'packages'); |
299 return new Future.of(() { | 299 return new Future.of(() { |
300 if (fileExists(symlink)) { | 300 // The order of if tests is significant here. fileExists() will return |
301 // true for a symlink (broken or not) but deleteFile() cannot be used | |
302 // to delete a broken symlink on Windows. So we test for the directory | |
303 // first since deleteDir() does work on symlinks. | |
nweiz
2013/03/19 19:41:02
Can we clean up these semantics in io.dart? I'd li
| |
304 if (dirExists(symlink)) { | |
305 return deleteDir(symlink); | |
306 } else if (fileExists(symlink)) { | |
301 deleteFile(symlink); | 307 deleteFile(symlink); |
302 } else if (dirExists(symlink)) { | |
303 return deleteDir(symlink); | |
304 } | 308 } |
305 }).then((_) => createSymlink(packagesDir, symlink, relative: true)); | 309 }).then((_) => createSymlink(packagesDir, symlink, relative: true)); |
306 }); | 310 }); |
307 } | 311 } |
308 } | 312 } |
OLD | NEW |