Skip to content

Commit 77520b6

Browse files
committed
Disable job script stuff by default to restore old behavior if not using job script extension.
1 parent c628dea commit 77520b6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cwltool/job.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626

2727
needs_shell_quoting_re = re.compile(r"""(^$|[\s|&;()<>\'"$@])""")
2828

29-
FORCE_SHELLED_POPEN = os.getenv("CWLTOOL_FORCE_SHELL_POPEN", "1") == "1"
29+
FORCE_SHELLED_POPEN = os.getenv("CWLTOOL_FORCE_SHELL_POPEN", "0") == "1"
3030

3131
SHELL_COMMAND_TEMPLATE = """#!/bin/bash
3232
python "run_job.py" "job.json"

0 commit comments

Comments
 (0)