From 8337c73a1e6960829d25da5c923228089d0a6435 Mon Sep 17 00:00:00 2001 From: Pawloland <59684145+Pawloland@users.noreply.github.com> Date: Wed, 12 Apr 2023 15:13:57 +0200 Subject: [PATCH] Stop run.sh when installing dependencies fails (#490) --- scripts/run.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/run.sh b/scripts/run.sh index 4384515..288aa7a 100755 --- a/scripts/run.sh +++ b/scripts/run.sh @@ -26,7 +26,7 @@ if [ ! "$BASH_VERSION" ]; then fi cd "$(dirname "$0")" || exit 1 -./install_deps.sh +./install_deps.sh || exit 1 WHIPTAIL=$(command -v whiptail 2>/dev/null) DIALOG=$(command -v dialog 2>/dev/null)