From d5a8d07d1c9005b1690d72b42d969338fe2ccc0d Mon Sep 17 00:00:00 2001 From: Micheal Quinn Date: Fri, 2 Aug 2019 14:37:56 -0500 Subject: [PATCH] Fixing the macos shasum call to fit into the checksum check --- src/install/default.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/install/default.txt b/src/install/default.txt index a810e84e..d9d045b1 100644 --- a/src/install/default.txt +++ b/src/install/default.txt @@ -144,7 +144,7 @@ install_croc() echo "Verifying checksum..." if [[ $unameu == *DARWIN* ]]; then - checksum="$(shasum -a 256 ${dl}) $croc_file" + checksum="$(shasum -a 256 ${dl})" elif [[ $unameu == "FREEBSD" ]]; then checksum="$(sha256 -q ${dl}) $croc_file" else