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 273 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
284 return _listDirWithoutPackages(file); | 284 return _listDirWithoutPackages(file); |
285 }).then((subfiles) { | 285 }).then((subfiles) { |
286 var fileAndSubfiles = [file]; | 286 var fileAndSubfiles = [file]; |
287 fileAndSubfiles.addAll(subfiles); | 287 fileAndSubfiles.addAll(subfiles); |
288 return fileAndSubfiles; | 288 return fileAndSubfiles; |
289 }); | 289 }); |
290 }).toList()); | 290 }).toList()); |
291 }).then(flatten); | 291 }).then(flatten); |
292 } | 292 } |
293 | 293 |
294 /// Creates a symlink to the `packages` directory in [dir] if none exists. | 294 /// Creates a symlink to the `packages` directory in [dir]. Will replace one |
295 /// if already there. | |
295 Future _linkSecondaryPackageDir(String dir) { | 296 Future _linkSecondaryPackageDir(String dir) { |
296 return defer(() { | 297 return defer(() { |
297 var symlink = path.join(dir, 'packages'); | 298 var symlink = path.join(dir, 'packages'); |
298 if (entryExists(symlink)) return; | 299 if (fileExists(symlink)) deleteFile(symlink); |
300 if (dirExists(symlink)) { | |
301 return deleteDir(symlink).then( | |
302 (_) => createSymlink(packagesDir, symlink, relative: true)); | |
303 } | |
nweiz
2013/03/15 21:00:17
I'd probably write this as
return new Future
Bob Nystrom
2013/03/15 22:06:56
Done.
| |
304 | |
299 return createSymlink(packagesDir, symlink, relative: true); | 305 return createSymlink(packagesDir, symlink, relative: true); |
300 }); | 306 }); |
301 } | 307 } |
302 } | 308 } |
OLD | NEW |