From 19458d555c04da6c6581931b434a0681b9af0c98 Mon Sep 17 00:00:00 2001 From: Kroese Date: Sat, 27 Jan 2024 01:58:44 +0100 Subject: [PATCH] fix: Space after URL (#392) --- src/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/install.sh b/src/install.sh index d8e3923..e848537 100644 --- a/src/install.sh +++ b/src/install.sh @@ -39,7 +39,7 @@ info "$MSG" && html "$MSG" { wget "$BOOT" -O "$TMP" -q --no-check-certificate --show-progress "$PROGRESS"; rc=$?; } || : -(( rc != 0 )) && error "Failed to download $BOOT, reason: $rc" && exit 60 +(( rc != 0 )) && error "Failed to download $BOOT , reason: $rc" && exit 60 [ ! -f "$TMP" ] && error "Failed to download $BOOT" && exit 61 SIZE=$(stat -c%s "$TMP")