diff options
author | Paweł Hajdan, Jr <phajdan.jr@chromium.org> | 2014-10-22 14:31:14 +0200 |
---|---|---|
committer | Paweł Hajdan, Jr <phajdan.jr@chromium.org> | 2014-10-22 12:32:44 +0000 |
commit | 9f8fcc9bf8f8a47ce9178f2d8b4a9459f7063b1d (patch) | |
tree | d69dd802c488bc27122887e6334db57392579be3 /testing | |
parent | 851cfc61ae374c3ff134a00d279c583078c32fee (diff) | |
download | chromium_src-9f8fcc9bf8f8a47ce9178f2d8b4a9459f7063b1d.zip chromium_src-9f8fcc9bf8f8a47ce9178f2d8b4a9459f7063b1d.tar.gz chromium_src-9f8fcc9bf8f8a47ce9178f2d8b4a9459f7063b1d.tar.bz2 |
Make get_compile_targets.py work on Windows
BUG=422235
R=bartfab@chromium.org
Review URL: https://codereview.chromium.org/671513014
Cr-Commit-Position: refs/heads/master@{#300668}
Diffstat (limited to 'testing')
-rwxr-xr-x | testing/scripts/get_compile_targets.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testing/scripts/get_compile_targets.py b/testing/scripts/get_compile_targets.py index 80d4f37..16cff95 100755 --- a/testing/scripts/get_compile_targets.py +++ b/testing/scripts/get_compile_targets.py @@ -32,7 +32,7 @@ def main(argv): with common.temporary_file() as tempfile_path: rc = common.run_command( - [os.path.join(common.SCRIPT_DIR, filename)] + + [sys.executable, os.path.join(common.SCRIPT_DIR, filename)] + passthrough_args + [ 'compile_targets', |