From 868f3d0a4049dde79436373d8266d4e26af85f8a Mon Sep 17 00:00:00 2001 From: njalooo Date: Sat, 22 Jul 2023 16:28:36 +0200 Subject: [PATCH] Synthax error fix by rodikal for build-locally.sh Co-authored-by: Samuel Van Reeth --- build-locally.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-locally.sh b/build-locally.sh index 7763e9f..c5715fe 100644 --- a/build-locally.sh +++ b/build-locally.sh @@ -14,7 +14,7 @@ printf "${PURPLEBOLD}Building temporary modified Ubuntu image:\n" docker build -t lancachenet/ubuntu:latest --progress tty https://github.com/lancachenet/ubuntu.git #Removes standart Ubuntu image if not present before running: -if [$IMAGEEXISTS" == false]; then +if [ "$IMAGEEXISTS" == false ]; then printf "${PURPLEBOLD}Removing standart Ubuntu image:\n" docker rmi ubuntu fi