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

Unified Diff: tools/create_sdk.py

Issue 9465034: Prettified Windows scripts and allowed Windows scripts to handle paths that have spaces. Also moved… (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 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
« frog/scripts/bootstrap/frogc.bat ('K') | « frog/scripts/bootstrap/frogsh.bat ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/create_sdk.py
===================================================================
--- tools/create_sdk.py (revision 4579)
+++ tools/create_sdk.py (working copy)
@@ -102,7 +102,8 @@
frogc_file_extension = '.bat'
dart_src_binary = join(HOME, build_dir, 'dart' + dart_file_extension)
dart_dest_binary = join(BIN, 'dart' + dart_file_extension)
- frogc_src_binary = join(HOME, 'frog', 'frogc' + frogc_file_extension)
+ frogc_src_binary = join(HOME, 'frog', 'scripts', 'bootstrap',
+ 'frogc' + frogc_file_extension)
frogc_dest_binary = join(BIN, 'frogc' + frogc_file_extension)
copyfile(dart_src_binary, dart_dest_binary)
copymode(dart_src_binary, dart_dest_binary)
« frog/scripts/bootstrap/frogc.bat ('K') | « frog/scripts/bootstrap/frogsh.bat ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698