From bff3c2b183b5c37d713dc84734cf1c2e9589da83 Mon Sep 17 00:00:00 2001 From: Alexandre Date: Sat, 15 Jan 2022 21:24:55 +0100 Subject: [PATCH] beautify --- zzz_templates/automatic_packages.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/zzz_templates/automatic_packages.sh b/zzz_templates/automatic_packages.sh index 7d0cbd890..24651eb88 100644 --- a/zzz_templates/automatic_packages.sh +++ b/zzz_templates/automatic_packages.sh @@ -138,13 +138,13 @@ done # Install apps one by one to allow failures for packagestoinstall in $PACKAGES; do -[ "$VERBOSE" = true ] && echo "... $packagestoinstall" + [ "$VERBOSE" = true ] && echo "... $packagestoinstall" if [ "$PACKMANAGER" = "apk" ]; then apk add --no-cache $packagestoinstall &>/dev/null || echo "Error : $packagestoinstall not found" elif [ "$PACKMANAGER" = "apt" ]; then apt-get install -yqq --no-install-recommends $packagestoinstall &>/dev/null || echo "Error : $packagestoinstall not found" fi -[ "$VERBOSE" = true ] && echo "... $packagestoinstall done" + [ "$VERBOSE" = true ] && echo "... $packagestoinstall done" done # Clean after install