| 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 'package:pathos/path.dart' as path; |
| 10 | 10 |
| 11 import 'io.dart'; | 11 import 'io.dart'; |
| 12 import 'lock_file.dart'; | 12 import 'lock_file.dart'; |
| 13 import 'log.dart' as log; | 13 import 'log.dart' as log; |
| 14 import 'package.dart'; | 14 import 'package.dart'; |
| 15 import 'pubspec.dart'; | 15 import 'pubspec.dart'; |
| 16 import 'sdk.dart' as sdk; | 16 import 'sdk.dart' as sdk; |
| 17 import 'system_cache.dart'; | 17 import 'system_cache.dart'; |
| 18 import 'utils.dart'; | 18 import 'utils.dart'; |
| 19 import 'version.dart'; | 19 import 'version.dart'; |
| (...skipping 286 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 306 // doesn't matter. | 306 // doesn't matter. |
| 307 if (dirExists(symlink)) { | 307 if (dirExists(symlink)) { |
| 308 deleteDir(symlink); | 308 deleteDir(symlink); |
| 309 } else if (fileExists(symlink)) { | 309 } else if (fileExists(symlink)) { |
| 310 deleteFile(symlink); | 310 deleteFile(symlink); |
| 311 } | 311 } |
| 312 return createSymlink(packagesDir, symlink, relative: true); | 312 return createSymlink(packagesDir, symlink, relative: true); |
| 313 }); | 313 }); |
| 314 } | 314 } |
| 315 } | 315 } |
| OLD | NEW |