Skip to content

Commit

Permalink
fix: podman inspect typo (#643)
Browse files Browse the repository at this point in the history
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]>
  • Loading branch information
vsoch and vsoch authored Apr 27, 2023
1 parent 5413e68 commit 4c1cd80
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ and **Merged pull requests**. Critical items to know are:
The versions coincide with releases on pip. Only major versions will be released as tags on Github.

## [0.0.x](https://github.com/singularityhub/singularity-hpc/tree/main) (0.0.x)
- Podman template bug (0.1.21)
- Improvement to shpc help command output (0.1.2)
- Support for remote registries on self-hosted Gitlab instances (0.1.19)
- Support for uninstall and fixing bug in biocontainers install (0.1.18)
Expand Down
2 changes: 1 addition & 1 deletion shpc/main/wrappers/templates/docker/inspect.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{% extends "bases/shell-script-base.sh" %}

{% block content %}singularity ${PODMAN_OPTS} inspect ${PODMAN_COMMAND_OPTS} {{ image }}{% endblock %}
{% block content %}{{ container.command }} ${PODMAN_OPTS} inspect ${PODMAN_COMMAND_OPTS} {{ image }}{% endblock %}
1 change: 0 additions & 1 deletion shpc/settings.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,4 +103,3 @@ container_features:
# defaults to ~/.Xauthority if set to true and the container has x11: true
home: # one of null, or a single path or src:dest path.
# home: true in a container.yaml will use this path, if defines
updated_at: '2022-08-26T20:38:06Z'
2 changes: 1 addition & 1 deletion shpc/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
__copyright__ = "Copyright 2021-2023, Vanessa Sochat"
__license__ = "MPL 2.0"

__version__ = "0.1.2"
__version__ = "0.1.21"
AUTHOR = "Vanessa Sochat"
EMAIL = "[email protected]"
NAME = "singularity-hpc"
Expand Down

0 comments on commit 4c1cd80

Please sign in to comment.