Unverified Commit 69c33a32 authored by Alexander Aprelev's avatar Alexander Aprelev Committed by GitHub

Fix path to uri conversion. (#15264)

parent 6e46c184
...@@ -505,7 +505,7 @@ class DevFS { ...@@ -505,7 +505,7 @@ class DevFS {
packagesFilePath : _packagesFilePath); packagesFilePath : _packagesFilePath);
if (compiledBinary != null && compiledBinary.isNotEmpty) if (compiledBinary != null && compiledBinary.isNotEmpty)
dirtyEntries.putIfAbsent( dirtyEntries.putIfAbsent(
Uri.parse(target + '.dill'), fs.path.toUri(target + '.dill'),
() => new DevFSFileContent(fs.file(compiledBinary)) () => new DevFSFileContent(fs.file(compiledBinary))
); );
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment