From 69863938ef4c8160de9c8bcf33e12b3c8946a723 Mon Sep 17 00:00:00 2001 From: Kroese Date: Sat, 27 Jan 2024 01:59:55 +0100 Subject: [PATCH] fix: Space after URL --- src/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/install.sh b/src/install.sh index 9887d0923..ca9e97a8e 100644 --- a/src/install.sh +++ b/src/install.sh @@ -272,7 +272,7 @@ downloadImage() { fi { wget "$url" -O "$iso" -q --no-check-certificate --show-progress "$progress"; rc=$?; } || : - (( rc != 0 )) && error "Failed to download $url, reason: $rc" && exit 60 + (( rc != 0 )) && error "Failed to download $url , reason: $rc" && exit 60 [ ! -f "$iso" ] && return 1 return 0