Synthax error fix by rodikal for build-locally.sh

Co-authored-by: Samuel Van Reeth <samuelvanreeth@gmail.com>
This commit is contained in:
njalooo 2023-07-22 16:28:17 +02:00 committed by GitHub
parent 157b3a0733
commit cb59a91f90

View file

@ -6,7 +6,7 @@ PURPLEBOLD="$(tput setf 5 bold)"
#Checks if image ubuntu already exists:
IMAGEEXISTS=true
if [[ "$(docker image inspect ubuntu >/dev/null 2>&1 && echo true || echo false)" = "false" ]]; then
if [[ "$(docker image inspect ubuntu >/dev/null 2>&1 && echo true || echo false)" == "false" ]]; then
IMAGEEXISTS=false
fi