Skip to content

Commit

Permalink
Fix mistaken inversion of the IMG flag
Browse files Browse the repository at this point in the history
  • Loading branch information
Jafner committed Feb 17, 2024
1 parent 1612750 commit cbadea0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion init.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit cbadea0

Please sign in to comment.