Skip to content

Commit 080ff1f

Browse files
sigmundchcommit-bot@chromium.org
authored andcommitted
Fix parsing of output-directory Uri in windows
Change-Id: I3e3417e5048f8545056d99df35ca2de140dc31f5 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/105680 Reviewed-by: Nicholas Shahan <[email protected]> Commit-Queue: Sigmund Cherem <[email protected]>
1 parent dab4eb0 commit 080ff1f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

pkg/modular_test/lib/src/runner.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ class Options {
100100
exit(1);
101101
}
102102
}
103-
Uri toUri(s) => s == null ? null : Uri.base.resolve(s);
103+
Uri toUri(s) => s == null ? null : Uri.base.resolveUri(Uri.file(s));
104104
return Options()
105105
..showSkipped = argResults['show-skipped']
106106
..verbose = argResults['verbose']

0 commit comments

Comments
 (0)