From 81357d646577710c78918c3cd56d224c8fb348ee Mon Sep 17 00:00:00 2001 From: Salt Date: Wed, 2 Dec 2020 19:26:16 -0600 Subject: [PATCH] Hey we need to grep out of a file --- gentoostrap.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gentoostrap.sh b/gentoostrap.sh index b649ffa..5bc7225 100755 --- a/gentoostrap.sh +++ b/gentoostrap.sh @@ -110,12 +110,12 @@ build-gentoo() { if ! [ -f "$stage3file" ]; then log "Downloading stage3" curl -s "$stage3" -o "$stage3file" - elif ! grep -e "$(sha512sum "$stage3file" | awk '{print $1}')"; then + elif ! grep "$stage3sig" -e "$(sha512sum "$stage3file" | awk '{print $1}')"; then log "Checksum verification failed; downloading new stage3" curl -s "$stage3" -o "$stage3file" fi # At this point, we should have a new stage3 that matches our signature; die of not - if ! grep -e "$(sha512sum "$stage3file" | awk '{print $1}')"; then + if ! grep "$stage3sig" -e "$(sha512sum "$stage3file" | awk '{print $1}')"; then error "stage3 checksum verification failed" 50 fi log "Decompressing tarball; this will prompt for root privileges"