"docs/vscode:/vscode.git/clone" did not exist on "c8f2769b42616ac30f29646085e6e75366fb1ede"
Unverified Commit 2e6692c8 authored by Jeff Rasley's avatar Jeff Rasley Committed by GitHub
Browse files

Fix regression in runner (#843)

parent 49496364
...@@ -304,7 +304,7 @@ def main(args=None): ...@@ -304,7 +304,7 @@ def main(args=None):
# encode world info as base64 to make it easier to pass via command line # encode world info as base64 to make it easier to pass via command line
world_info_base64 = encode_world_info(active_resources) world_info_base64 = encode_world_info(active_resources)
multi_node_exec = True # len(active_resources) > 1 multi_node_exec = len(active_resources) > 1
if multi_node_exec and not shutil.which('pdsh'): if multi_node_exec and not shutil.which('pdsh'):
raise RuntimeError("pdsh is not installed, unable to proceed") raise RuntimeError("pdsh is not installed, unable to proceed")
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment