| Index: utils/pub/sdk_source.dart
|
| diff --git a/utils/pub/sdk_source.dart b/utils/pub/sdk_source.dart
|
| index b64fd9c78014a9ce4f0dc8cc83c7005efdfd3566..e3de4262b5a5bf16fadcd72cc6e89c07cd8c5f2a 100644
|
| --- a/utils/pub/sdk_source.dart
|
| +++ b/utils/pub/sdk_source.dart
|
| @@ -25,7 +25,7 @@ class SdkSource extends Source {
|
| * involves symlinking the SDK library into the packages directory.
|
| */
|
| Future<bool> install(PackageId id, String destPath) {
|
| - var sourcePath = join(rootDir, "lib", id.fullName);
|
| + var sourcePath = join(rootDir, "lib", id.description);
|
| return exists(sourcePath).chain((exists) {
|
| if (!exists) return new Future<bool>.immediate(false);
|
| return createSymlink(sourcePath, destPath).transform((_) => true);
|
|
|