From a2566076c874b8940f342cf85fded040a59d3deb Mon Sep 17 00:00:00 2001 From: Sebastian <379651+czarly@users.noreply.github.com> Date: Mon, 25 Mar 2024 13:23:56 +0100 Subject: [PATCH] fixc --- cleanup-volumes.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cleanup-volumes.sh b/cleanup-volumes.sh index 47f1c25b..9e4c4151 100755 --- a/cleanup-volumes.sh +++ b/cleanup-volumes.sh @@ -34,7 +34,7 @@ done if [ "$1" = "--remove-from-disk" ]; then # Iterate over volumes in the difference array and remove them from disk - for volume in "${unused_volume[@]}"; do + for volume in "${unused_volumes[@]}"; do docker volume rm "$volume" done else