Skip to content
Snippets Groups Projects
Commit 33bf7b3a authored by Jan David Mol's avatar Jan David Mol
Browse files

Task #9522: Do not escape {command} when running directly under srun

parent 72cfdcca
No related branches found
No related tags found
No related merge requests found
......@@ -161,7 +161,7 @@ def run_via_custom_cmdline(logger, host, command, environment, arguments, config
dockerEnvStr = " ".join(dockerEnvPairs)
# construct {command}
commandArray = [command] + arguments
commandArray = [command] + [str(x) for x in arguments]
commandStr = " ".join(commandArray)
# Determine job name
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment