| Index: utils/pub/package.dart
|
| diff --git a/utils/pub/package.dart b/utils/pub/package.dart
|
| index c5fa0e8165a5117f710c41aeefbc781cef68627e..7bb50dfa653420c36e12a8b79f5ab9bc471dc0e5 100644
|
| --- a/utils/pub/package.dart
|
| +++ b/utils/pub/package.dart
|
| @@ -18,7 +18,7 @@ class Package {
|
| * Loads the package whose root directory is [packageDir].
|
| */
|
| static Future<Package> load(String packageDir, SourceRegistry sources) {
|
| - var pubspecPath = join(packageDir, 'pubspec');
|
| + var pubspecPath = join(packageDir, 'pubspec.yaml');
|
|
|
| return fileExists(pubspecPath).chain((exists) {
|
| if (exists) {
|
|
|