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/only_in_release_mode.py

Issue 286953004: Fix only_in_release_mode.py's subcommand paths on Windows. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 7 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/only_in_release_mode.py
diff --git a/tools/only_in_release_mode.py b/tools/only_in_release_mode.py
index 2713b105d6fc18e5aacf6da7297df3b7929e8558..089d30c039c91245c1f18d42f832bc18610f14c1 100644
--- a/tools/only_in_release_mode.py
+++ b/tools/only_in_release_mode.py
@@ -28,6 +28,7 @@ def Main():
separator_index = sys.argv.index('--')
outputs = sys.argv[1:separator_index]
arguments = sys.argv[separator_index + 1:]
+ arguments[0] = os.path.normpath(arguments[0])
mode = os.getenv('DART_BUILD_MODE', default='release')
if mode != 'release':
print >> sys.stderr, 'Not running %s in mode=%s' % (arguments, mode)
« 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