From 4e284edbbf4b8eb9bacdcbbf0215a3adef3bf3d1 Mon Sep 17 00:00:00 2001 From: Gitouche <26656-gitouche@users.noreply.framagit.org> Date: Sat, 12 Jun 2021 21:36:35 +0200 Subject: [PATCH] jisti fix bug --- podman-jitsi/90_prune.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/podman-jitsi/90_prune.sh b/podman-jitsi/90_prune.sh index 70852e5..9fe0dae 100755 --- a/podman-jitsi/90_prune.sh +++ b/podman-jitsi/90_prune.sh @@ -21,5 +21,5 @@ podman unshare rm -rf ~/${confvolume}/ # remove images for image in ${upstream_images} ; do - podman rmi "$(podman images -a -q -- ${image})" || echo Image ${image} not found. + podman rmi $(podman images -a -q -- ${image}) || echo Image ${image} not found. done