Update install.sh

This commit is contained in:
Kroese 2024-05-01 05:42:55 +02:00 committed by GitHub
parent 74ccbdcea8
commit 4b8fb34019
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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