Skip to content

Commit f947147

Browse files
committed
Don't always force pull nodejs with Singularity
1 parent f8d9972 commit f947147

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cwl_utils/sandboxjs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,7 @@ def new_js_proc(
329329
):
330330
# pull node:slim docker container
331331
nodejs_pull_commands = [container_engine, "pull"]
332-
if container_engine == "singularity":
332+
if force_docker_pull:
333333
nodejs_pull_commands.append("--force")
334334
nodejs_pull_commands.append(nodeimg)
335335
nodejsimg = subprocess.check_output( # nosec

0 commit comments

Comments
 (0)