From beccfa6f14500d423daa5fb2ae187b8210514bdb Mon Sep 17 00:00:00 2001 From: Sameeul Bashir Samee Date: Tue, 10 Dec 2024 03:01:35 -0500 Subject: [PATCH] singularity image puller: replace ":" in image name with "_" (#342) --- cwl_utils/image_puller.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cwl_utils/image_puller.py b/cwl_utils/image_puller.py index beec3c3..5fae078 100644 --- a/cwl_utils/image_puller.py +++ b/cwl_utils/image_puller.py @@ -89,7 +89,7 @@ def save_docker_image(self) -> None: class SingularityImagePuller(ImagePuller): """Pull docker image with Singularity.""" - CHARS_TO_REPLACE = ["/"] + CHARS_TO_REPLACE = ["/", ":"] NEW_CHAR = "_" def get_image_name(self) -> str: