| Index: lib/devc.dart
|
| diff --git a/lib/devc.dart b/lib/devc.dart
|
| index 3b108844d8c77bd300047b00b9a4858c06be92d5..ae22b89cdb66e14d92748ab54fd1639bf81ffa27 100644
|
| --- a/lib/devc.dart
|
| +++ b/lib/devc.dart
|
| @@ -139,7 +139,8 @@ class Compiler implements AbstractCompiler {
|
| // location. These can be external dependencies or pieces of the
|
| // dev_compiler runtime.
|
| if (outputDir == null) return;
|
| - var filepath = resourceOutputPath(node.uri, _entryNode.uri);
|
| + var filepath =
|
| + resourceOutputPath(node.uri, _entryNode.uri, options.runtimeDir);
|
| assert(filepath != null);
|
| filepath = path.join(outputDir, filepath);
|
| var dir = path.dirname(filepath);
|
|
|