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 5f99327 commit 7382be1Copy full SHA for 7382be1
cwltool/singularity.py
@@ -31,6 +31,8 @@ def get_version() -> str:
31
).strip()
32
if _SINGULARITY_VERSION.startswith("singularity version "):
33
_SINGULARITY_VERSION = _SINGULARITY_VERSION[20:]
34
+ if _SINGULARITY_VERSION.startswith("singularity-ce version "):
35
+ _SINGULARITY_VERSION = _SINGULARITY_VERSION[23:]
36
_logger.debug(f"Singularity version: {_SINGULARITY_VERSION}.")
37
return _SINGULARITY_VERSION
38
0 commit comments