We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 66f5595 commit fcdd289Copy full SHA for fcdd289
shpc/main/container/singularity.py
@@ -98,11 +98,9 @@ def add(
98
):
99
return
100
101
- # Destination for container in registry, either the container.yaml
102
- # path or the container base, if a custom path is desired
103
- if not self.settings.container_base and not keep_path:
104
- dest_dir = os.path.dirname(container_yaml)
105
- utils.mkdir_p(dest_dir)
+ # Destination for container in registry for container.yaml
+ dest_dir = os.path.dirname(container_yaml)
+ utils.mkdir_p(dest_dir)
106
107
# Add a docker (or local image) and return the config
108
if image.startswith("docker://"):
0 commit comments