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

Unified Diff: client/swarming.py

Issue 2037253002: run_isolated.py: install CIPD packages (Closed) Base URL: https://chromium.googlesource.com/external/github.com/luci/luci-py@master
Patch Set: simplified closing of list file Created 4 years, 6 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: client/swarming.py
diff --git a/client/swarming.py b/client/swarming.py
index 2fead3ed37345d5af91a34367e0bd8d25cd4f7cd..92eb81f0de38f42c38bfa03c08065343a3e5816e 100755
--- a/client/swarming.py
+++ b/client/swarming.py
@@ -1395,7 +1395,8 @@ def CMDreproduce(parser, args):
workdir = os.path.join(workdir, bundle.relative_cwd)
command.extend(properties.get('extra_args') or [])
# https://github.com/luci/luci-py/blob/master/appengine/swarming/doc/Magic-Values.md
- new_command = run_isolated.process_command(command, options.output_dir)
+ new_command = run_isolated.process_command(
+ command, options.output_dir, None)
if not options.output_dir and new_command != command:
parser.error('The task has outputs, you must use --output-dir')
command = new_command

Powered by Google App Engine
This is Rietveld 408576698