Skip to content

Commit eb07aa9

Browse files
committed
fix(htcondorcern): support multiline commands (#474)
Closes #470
1 parent 9cda591 commit eb07aa9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

reana_job_controller/htcondorcern_job_manager.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ def _format_arguments(self):
164164
# Take only the user's command, removes the change directory to workflow workspace
165165
# added by RWE-Serial/Snakemake since HTCondor implementation does not need it.
166166
# E.g. "cd /path/to/workspace ; user-command" -> "user-command"
167-
base_cmd = " ".join(self.cmd.split()[3:])
167+
base_cmd = self.cmd.split(maxsplit=3)[3]
168168
if self.workflow.type_ == "snakemake":
169169
# For Snakemake workflows, also remove the workspace path from
170170
# `jobfinished` and `jobfailed` touch commands.

0 commit comments

Comments
 (0)