From 4b8fb340198b4b5e730461ddc31741e1c077dc51 Mon Sep 17 00:00:00 2001 From: Kroese Date: Wed, 1 May 2024 05:42:55 +0200 Subject: [PATCH] Update install.sh --- src/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/install.sh b/src/install.sh index af05d65..95ba0ca 100644 --- a/src/install.sh +++ b/src/install.sh @@ -310,7 +310,7 @@ downloadFile() { if [ "$(stat -c%s "$iso")" -gt 100000000 ]; then if [[ "$VERIFY" == [Yy1]* ]]; then info "Calculating SHA256 sum of downloaded ISO..." - hash=$(sha256sum "$iso") + hash=$(sha256sum "$iso" | cut -f1 -d' ') info "Result: $hash" fi html "Download finished successfully..." && return 0