Skip to content

Commit

Permalink
singularity image puller: replace ":" in image name with "_" (#342)
Browse files Browse the repository at this point in the history
  • Loading branch information
sameeul authored Dec 10, 2024
1 parent 0fe3ca6 commit beccfa6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cwl_utils/image_puller.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit beccfa6

Please sign in to comment.