From ceb05e99f1f76d9a3f22b08423e329182aadd38f 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 --- 5etools-docker/init.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/5etools-docker/init.sh b/5etools-docker/init.sh index cc6bdecc..ac50e42f 100644 --- a/5etools-docker/init.sh +++ b/5etools-docker/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