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

Unified Diff: tools/create_sdk.py

Issue 12499003: Fix for editor tests (and everything else that uses dartdoc from build dir.) (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 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/create_sdk.py
diff --git a/tools/create_sdk.py b/tools/create_sdk.py
index e24902ae4664b8e82391ca8756c7c03e349ee58b..349c104f9f48e1c75760e78d737424bcd14c7c0a 100755
--- a/tools/create_sdk.py
+++ b/tools/create_sdk.py
@@ -277,9 +277,12 @@ def Main(argv):
# Fix up dartdoc.
# TODO(dgrove): Remove this once issue 6619 is fixed.
ReplaceInFiles([join(SDK_tmp, 'lib', '_internal', 'dartdoc',
- 'bin', 'dartdoc.dart')],
- [("../../../../../pkg/args/lib/args.dart",
- "../../../../pkg/args/lib/args.dart")])
+ 'bin', 'dartdoc.dart')], [
+ ("../../../../../pkg/args/lib/args.dart",
+ "../../../../pkg/args/lib/args.dart"),
+ ("../../../../../pkg/pathos/lib/path.dart",
+ "../../../../pkg/pathos/lib/path.dart"),
+ ])
# Write the 'version' file
versionFile = open(os.path.join(SDK_tmp, 'version'), 'w')
« 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