Skip to content

Commit 4c1cd80

Browse files
authored
fix: podman inspect typo (#643)
The podman inspect script (generated as a wrapper script) accidentally has singularity hard coded instead of the container.command template variable. This will fix that. Signed-off-by: vsoch <[email protected]> Co-authored-by: vsoch <[email protected]>
1 parent 5413e68 commit 4c1cd80

File tree

4 files changed

+3
-3
lines changed

4 files changed

+3
-3
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ and **Merged pull requests**. Critical items to know are:
1414
The versions coincide with releases on pip. Only major versions will be released as tags on Github.
1515

1616
## [0.0.x](https://github.com/singularityhub/singularity-hpc/tree/main) (0.0.x)
17+
- Podman template bug (0.1.21)
1718
- Improvement to shpc help command output (0.1.2)
1819
- Support for remote registries on self-hosted Gitlab instances (0.1.19)
1920
- Support for uninstall and fixing bug in biocontainers install (0.1.18)
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{% extends "bases/shell-script-base.sh" %}
22

3-
{% block content %}singularity ${PODMAN_OPTS} inspect ${PODMAN_COMMAND_OPTS} {{ image }}{% endblock %}
3+
{% block content %}{{ container.command }} ${PODMAN_OPTS} inspect ${PODMAN_COMMAND_OPTS} {{ image }}{% endblock %}

shpc/settings.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,4 +103,3 @@ container_features:
103103
# defaults to ~/.Xauthority if set to true and the container has x11: true
104104
home: # one of null, or a single path or src:dest path.
105105
# home: true in a container.yaml will use this path, if defines
106-
updated_at: '2022-08-26T20:38:06Z'

shpc/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
__copyright__ = "Copyright 2021-2023, Vanessa Sochat"
33
__license__ = "MPL 2.0"
44

5-
__version__ = "0.1.2"
5+
__version__ = "0.1.21"
66
AUTHOR = "Vanessa Sochat"
77
88
NAME = "singularity-hpc"

0 commit comments

Comments
 (0)