podman-peerjs : minor fix

This commit is contained in:
Gitouche 2021-06-04 19:37:41 +02:00
parent dc31107e18
commit 22990d5d4a
1 changed files with 2 additions and 2 deletions

View File

@ -15,10 +15,10 @@ current_imageversion=$(podman container inspect -f '{{.ImageName}}' ${container_
if [[ "${upstream_imageversion}" == "${current_imageversion}" ]] ; then
echo Container ${container_name} does not need rebuilding. Exiting.
exit 0
else
echo Rebuilding container ${container_name} with image ${upstream_imageversion}
fi
echo Rebuilding container ${container_name} with image ${upstream_imageversion}
# pull first for minimal downtime
podman pull ${upstream_imageversion}