| 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 280 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 291 }); | 291 }); |
| 292 }).toList()); | 292 }).toList()); |
| 293 }).then(flatten); | 293 }).then(flatten); |
| 294 } | 294 } |
| 295 | 295 |
| 296 /// Creates a symlink to the `packages` directory in [dir]. Will replace one | 296 /// Creates a symlink to the `packages` directory in [dir]. Will replace one |
| 297 /// if already there. | 297 /// if already there. |
| 298 Future _linkSecondaryPackageDir(String dir) { | 298 Future _linkSecondaryPackageDir(String dir) { |
| 299 return defer(() { | 299 return defer(() { |
| 300 var symlink = path.join(dir, 'packages'); | 300 var symlink = path.join(dir, 'packages'); |
| 301 if (fileExists(symlink)) { | 301 // The order of if tests is significant here. fileExists() will return |
| 302 // true for a symlink (broken or not) but deleteFile() cannot be used |
| 303 // to delete a broken symlink on Windows. So we test for the directory |
| 304 // first since deleteDir() does work on symlinks. |
| 305 // TODO(rnystrom): Make deleteFile() work for symlinks on Windows so this |
| 306 // doesn't matter. |
| 307 if (dirExists(symlink)) { |
| 308 deleteDir(symlink); |
| 309 } else if (fileExists(symlink)) { |
| 302 deleteFile(symlink); | 310 deleteFile(symlink); |
| 303 } else if (dirExists(symlink)) { | |
| 304 deleteDir(symlink); | |
| 305 } | 311 } |
| 306 return createSymlink(packagesDir, symlink, relative: true); | 312 return createSymlink(packagesDir, symlink, relative: true); |
| 307 }); | 313 }); |
| 308 } | 314 } |
| 309 } | 315 } |
| OLD | NEW |