Index: lib/src/entrypoint.dart |
diff --git a/lib/src/entrypoint.dart b/lib/src/entrypoint.dart |
index e0c6774a9c227945f26faff7fd8d843a585b76a8..fb6d96a8d19847ba0542468380d3e2c17b30e1d9 100644 |
--- a/lib/src/entrypoint.dart |
+++ b/lib/src/entrypoint.dart |
@@ -525,6 +525,7 @@ class Entrypoint { |
continue; |
} |
} on FileException { |
+ print("got fe"); |
Bob Nystrom
2016/05/17 18:10:20
Delete this. :)
nweiz
2016/05/17 18:26:17
Done.
|
// If we can't load the pubpsec, the user needs to re-run "pub get". |
} |
@@ -536,6 +537,8 @@ class Entrypoint { |
/// Returns whether the locked version of [dep] matches the dependency. |
bool _isDependencyUpToDate(PackageDep dep) { |
+ if (dep.name == root.name) return true; |
+ |
var locked = lockFile.packages[dep.name]; |
if (locked == null) return false; |