From cbadea024a77ab7acca2428ce1a4b84ea0005360 Mon Sep 17 00:00:00 2001 From: Joey Hafner Date: Fri, 16 Feb 2024 22:43:27 -0800 Subject: [PATCH] Fix mistaken inversion of the IMG flag --- init.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init.sh b/init.sh index cc6bdec..ac50e42 100644 --- a/init.sh +++ b/init.sh @@ -49,7 +49,7 @@ else git config --global --add safe.directory '/usr/local/apache2/htdocs' # Disable directory ownership checking, required for mounted volumes fi -if ! [[ "$IMG" == "TRUE" ]]; then # if user wants images +if [[ "$IMG" == "TRUE" ]]; then # if user wants images echo " === Pulling images from GitHub... (This will take a while)" git submodule add -f $IMG_LINK /usr/local/apache2/htdocs/img fi