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

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: Rework based on code review comments 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..a9ae8082f217619a91fd3392323f4ef5cdc74c32 100755
--- a/tools/create_sdk.py
+++ b/tools/create_sdk.py
@@ -112,7 +112,7 @@ 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']:
ahe 2014/10/15 08:44:54 Long line. You can break the line anywhere within
Paul Berry 2014/10/16 00:16:03 Done.
CopyShellScript(os.path.join(home, 'sdk', 'bin', executable),
os.path.join(sdk_root, 'bin'))

Powered by Google App Engine
This is Rietveld 408576698