From 071175ba6776c6e7cbc16eb64e498f25ab2cad3f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maximilian=20Ke=C3=9Fler?= Date: Thu, 19 Oct 2023 13:51:49 +0200 Subject: [PATCH] fix missing then --- setup-key.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup-key.sh b/setup-key.sh index 507bd47..a5d66cf 100755 --- a/setup-key.sh +++ b/setup-key.sh @@ -32,7 +32,7 @@ URL="https://git.abstractnonsen.se/${OWNER}/${REPOSITORY}" if curl --output /dev/null --silent --head --fail "${URL}"; then read -p -n 1 -r "Url ${URL} is not (publicly) accessible, are you sure you want to continue? [y/N] " echo - if [[ ! $REPLY =~ ^[Yy]$ ]] + if [[ ! $REPLY =~ ^[Yy]$ ]]; then exit 1 fi fi