mirror of
https://github.com/lancachenet/monolithic
synced 2024-11-21 11:33:05 +00:00
Synthax error fix by rodikal for build-locally.sh
Co-authored-by: Samuel Van Reeth <samuelvanreeth@gmail.com>
This commit is contained in:
parent
157b3a0733
commit
cb59a91f90
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue