From 3a3b0e24cb2206d7dbdb6556a9a43679f0647598 Mon Sep 17 00:00:00 2001 From: winkidney Date: Sun, 8 Dec 2019 17:07:18 +0800 Subject: [PATCH] Fix: Should not exit after docker image built --- docker/bootstrap.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/bootstrap.sh b/docker/bootstrap.sh index caf3fc7..c5ce0fa 100755 --- a/docker/bootstrap.sh +++ b/docker/bootstrap.sh @@ -7,7 +7,7 @@ if [ "${ALLOW_NEW_REGISTRATIONS}" = "" ]; then fi if [[ "$(docker images -q pinry/pinry 2> /dev/null)" == "" ]]; then - echo "No docker image found, building..." && "${script_dir}/build_docker.sh" || echo "Failed to build docker image..." && exit + echo "No docker image found, building..." && "${script_dir}/build_docker.sh" fi echo "=================================================================================="