| Index: sdk/lib/_internal/pub/lib/src/package.dart
|
| diff --git a/sdk/lib/_internal/pub/lib/src/package.dart b/sdk/lib/_internal/pub/lib/src/package.dart
|
| index 27ed6a772f66bd218f4873807149e109cbd597c4..4333648476f95e2bf1a6853bc821506b023dc905 100644
|
| --- a/sdk/lib/_internal/pub/lib/src/package.dart
|
| +++ b/sdk/lib/_internal/pub/lib/src/package.dart
|
| @@ -153,7 +153,7 @@ class Package {
|
| return "$dir\\${file.replaceAll("/", "\\")}";
|
| }).where((file) {
|
| // Filter out broken symlinks, since git doesn't do so automatically.
|
| - return !linkExists(file) || fileExists(file);
|
| + return fileExists(file);
|
| });
|
| } else {
|
| files = listDir(beneath, recursive: true, includeDirs: false,
|
|
|