From cf3cd9a88888761e4990138753ae0d99b9dc926a Mon Sep 17 00:00:00 2001 From: Thomas Juerges <203795-tjuerges@users.noreply.gitlab.com> Date: Tue, 25 May 2021 16:29:22 +0200 Subject: [PATCH] L2SS-225: Do not quote images string --- bootstrap/sbin/rebuild_system_from_scratch.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootstrap/sbin/rebuild_system_from_scratch.sh b/bootstrap/sbin/rebuild_system_from_scratch.sh index 48ccf2dda..d98cb099f 100755 --- a/bootstrap/sbin/rebuild_system_from_scratch.sh +++ b/bootstrap/sbin/rebuild_system_from_scratch.sh @@ -57,7 +57,7 @@ function remove_images() for image in ${images}; do printf "\t\t%s\n" ${image} done - docker rmi "${images}" + docker rmi ${images} fi } -- GitLab