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

Unified Diff: tools/create_sdk.py

Issue 9837110: Conditionally create the lib/isolate/runtime directory (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Conditionally create a directory for lib/isolate/runtime Created 8 years, 9 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/create_sdk.py
diff --git a/tools/create_sdk.py b/tools/create_sdk.py
index ddc58506ee6528634c01259f8660eb53cda6fb9f..4c0c3c5b116ec1e59c37e9ab9e5a3d1d13c967ff 100755
--- a/tools/create_sdk.py
+++ b/tools/create_sdk.py
@@ -314,6 +314,11 @@ def Main(argv):
# Create and populate lib/isolate
copytree(join(HOME, 'lib', 'isolate'), join(LIB, 'isolate'),
ignore=ignore_patterns('.svn'))
+
+ isolate_runtime_dir = join(LIB, 'isolate', 'runtime')
+ # path seems to exist when run locally, but not on builder
+ if not exists(isolate_runtime_dir):
+ os.makedirs(isolate_runtime_dir)
zundel 2012/03/28 14:52:17 Locally, I don't need this change, in fact, it thr
isolate_runtime_src = join(HOME, 'runtime', 'lib', 'isolate.dart')
isolate_runtime_dest = join(LIB, 'isolate', 'runtime', 'isolate.dart')
« 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