Fix podman image rm (90 prune pour container simple)

This commit is contained in:
Gitouche 2024-11-22 18:53:32 +01:00
parent a1dd1ea876
commit 24f11a30bf

View file

@ -18,5 +18,5 @@ ensure_systemd_unit_not_exists "${service_name}"
# remove images
for image in ${upstream_images} ; do
podman image rm -f "$(podman image list -a -q -- ${image})" || echo Image "${image}" not found.
podman image rm -f $(podman image list -a -q -- ${image}) || echo Image ${image} not found.
done