chore(build): fix script return code

Signed-off-by: rjshrjndrn <rjshrjndrn@gmail.com>
This commit is contained in:
rjshrjndrn 2022-06-24 18:22:30 +02:00
parent 2c3841e57e
commit 03fa6c5e22

View file

@ -13,9 +13,8 @@ ee="false"
check_prereq() {
which docker || {
echo "Docker not installed, please install docker."
exit=1
exit 100
}
[[ exit -eq 1 ]] && exit 1
}
# https://github.com/docker/cli/issues/1134#issuecomment-613516912