OLD | NEW |
1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file |
2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
4 | 4 |
5 library pub.executable; | 5 library pub.executable; |
6 | 6 |
7 import 'dart:async'; | 7 import 'dart:async'; |
8 import 'dart:io'; | 8 import 'dart:io'; |
9 | 9 |
10 import 'package:barback/barback.dart'; | 10 import 'package:barback/barback.dart'; |
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
106 if (package != entrypoint.root.name) { | 106 if (package != entrypoint.root.name) { |
107 message += " in package ${log.bold(package)}"; | 107 message += " in package ${log.bold(package)}"; |
108 } | 108 } |
109 log.error("$message."); | 109 log.error("$message."); |
110 return exit_codes.NO_INPUT; | 110 return exit_codes.NO_INPUT; |
111 } | 111 } |
112 | 112 |
113 // If we're running an executable directly from the filesystem, make sure that | 113 // If we're running an executable directly from the filesystem, make sure that |
114 // it knows where to load the packages. If it's a dependency's executable, for | 114 // it knows where to load the packages. If it's a dependency's executable, for |
115 // example, it may not have the right packages directory itself. | 115 // example, it may not have the right packages directory itself. |
116 if (executableUrl.scheme == 'file') { | 116 if (executableUrl.scheme == 'file' || executableUrl.scheme == '') { |
117 // TODO(nweiz): use a .packages file once sdk#23369 is fixed. | 117 // TODO(nweiz): use a .packages file once sdk#23369 is fixed. |
118 vmArgs.add('--package-root=${p.toUri(entrypoint.packagesDir)}'); | 118 vmArgs.add('--package-root=${p.toUri(entrypoint.packagesDir)}'); |
119 } | 119 } |
120 | 120 |
121 vmArgs.add(executableUrl.toString()); | 121 vmArgs.add(executableUrl.toString()); |
122 vmArgs.addAll(args); | 122 vmArgs.addAll(args); |
123 | 123 |
124 var process = await Process.start(Platform.executable, vmArgs); | 124 var process = await Process.start(Platform.executable, vmArgs); |
125 | 125 |
126 _forwardSignals(process); | 126 _forwardSignals(process); |
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
262 } | 262 } |
263 | 263 |
264 /// Runs the executable snapshot at [snapshotPath]. | 264 /// Runs the executable snapshot at [snapshotPath]. |
265 Future<int> _runCachedExecutable(Entrypoint entrypoint, String snapshotPath, | 265 Future<int> _runCachedExecutable(Entrypoint entrypoint, String snapshotPath, |
266 List<String> args) { | 266 List<String> args) { |
267 return runSnapshot(snapshotPath, args, checked: true, recompile: () { | 267 return runSnapshot(snapshotPath, args, checked: true, recompile: () { |
268 log.fine("Precompiled executable is out of date."); | 268 log.fine("Precompiled executable is out of date."); |
269 return entrypoint.precompileExecutables(); | 269 return entrypoint.precompileExecutables(); |
270 }); | 270 }); |
271 } | 271 } |
OLD | NEW |