From b18c9383ffc18833cfa8ee544df7fc535998dd94 Mon Sep 17 00:00:00 2001 From: Kroese Date: Sun, 12 May 2024 20:11:08 +0200 Subject: [PATCH] fix: Check if file exists --- src/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/install.sh b/src/install.sh index 2502776..ccf7d4e 100644 --- a/src/install.sh +++ b/src/install.sh @@ -22,7 +22,7 @@ if [ -n "$URL" ]; then if [ -s "$STORAGE/$BASE.pat" ]; then URL="file://$STORAGE/$BASE.pat" else - error "File $STORAGE/$BASE.pat does not exist" && exit 65 + error "File $STORAGE/$BASE.pat does not exist!" && exit 65 fi fi fi