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

Unified Diff: tools/create_sdk.py

Issue 628363002: Modify dartanalyzer scripts to look more like dart2js scripts. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address code review comments and rebase Created 6 years, 2 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
Index: tools/create_sdk.py
diff --git a/tools/create_sdk.py b/tools/create_sdk.py
index 2a785fdb11f1937fa984b17bcfaa74f510397ce8..2083f051f107d8552d9485bf7549aeb337d4bfb3 100755
--- a/tools/create_sdk.py
+++ b/tools/create_sdk.py
@@ -112,7 +112,8 @@ def CopyShellScript(src_file, dest_dir):
def CopyDartScripts(home, sdk_root):
- for executable in ['dart2js', 'dartanalyzer', 'dartfmt', 'docgen', 'pub_sdk']:
+ for executable in ['dart2js', 'dartanalyzer_sdk', 'dartfmt', 'docgen',
+ 'pub_sdk']:
CopyShellScript(os.path.join(home, 'sdk', 'bin', executable),
os.path.join(sdk_root, 'bin'))

Powered by Google App Engine
This is Rietveld 408576698