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

Unified Diff: lib/src/executable.dart

Issue 1211243009: Fix loading untransformed executables again. (Closed) Base URL: git@github.com:dart-lang/pub.git@master
Patch Set: Created 5 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 | test/run/loads_package_imports_in_a_dependency_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/src/executable.dart
diff --git a/lib/src/executable.dart b/lib/src/executable.dart
index 7e577d04256b5c2d9ef3d1856974182e557b5e16..863f306f672e01c03349298ddf37efffcd3faa6c 100644
--- a/lib/src/executable.dart
+++ b/lib/src/executable.dart
@@ -113,7 +113,7 @@ Future<int> runExecutable(Entrypoint entrypoint, String package,
// If we're running an executable directly from the filesystem, make sure that
// it knows where to load the packages. If it's a dependency's executable, for
// example, it may not have the right packages directory itself.
- if (executableUrl.scheme == 'file') {
+ if (executableUrl.scheme == 'file' || executableUrl.scheme == '') {
// TODO(nweiz): use a .packages file once sdk#23369 is fixed.
vmArgs.add('--package-root=${p.toUri(entrypoint.packagesDir)}');
}
« no previous file with comments | « no previous file | test/run/loads_package_imports_in_a_dependency_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698