We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1406050 commit 6e2939cCopy full SHA for 6e2939c
cwltool/singularity.py
@@ -480,7 +480,7 @@ def create_runtime(
480
any_path_okay = self.builder.get_requirement("DockerRequirement")[1] or False
481
singularity_exec_command = "exec"
482
if is_apptainer_1_1_or_newer() or is_version_3_10_or_newer():
483
- singularity_exec_command = "run --no-eval"
+ singularity_exec_command = "run"
484
485
runtime = [
486
"singularity",
@@ -490,6 +490,9 @@ def create_runtime(
490
"--ipc",
491
"--cleanenv",
492
]
493
+ if is_apptainer_1_1_or_newer() or is_version_3_10_or_newer():
494
+ runtime.append("--no-eval")
495
+
496
if singularity_supports_userns():
497
runtime.append("--userns")
498
else:
0 commit comments