Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(93)

Unified Diff: utils/pub/package.dart

Issue 10544041: "pubspec" -> "pubspec.yaml". (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | utils/tests/pub/pub_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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) {
« no previous file with comments | « no previous file | utils/tests/pub/pub_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698