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

Unified Diff: tools/patch_sdk.dart

Issue 2709033005: In patch_sdk when passing --packages down to fasta turn it into an URI. (Closed)
Patch Set: Created 3 years, 10 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/patch_sdk.dart
diff --git a/tools/patch_sdk.dart b/tools/patch_sdk.dart
index b01a037226c77fefecfa4e2cb6f345365a5d4558..394d5688fb1d9a87010ece60fdc18acf72ee3d90 100644
--- a/tools/patch_sdk.dart
+++ b/tools/patch_sdk.dart
@@ -195,7 +195,10 @@ Future main(List<String> argv) async {
}
await compile_platform.main(<String>[
- '--packages', packagesFile, sdkOut, path.join(sdkOut, 'platform.dill')
+ '--packages',
+ new Uri.file(packagesFile).toString(),
+ sdkOut,
+ path.join(sdkOut, 'platform.dill')
]);
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698