Skip to content
Snippets Groups Projects
Verified Commit 70bd7b46 authored by Jeremy Soller's avatar Jeremy Soller
Browse files

Fix detection of SHASUM

parent d0e33c53
No related branches found
No related tags found
No related merge requests found
......@@ -13,8 +13,10 @@ export DEBUG=
export EXAMPLES=
export PREPARE_COPY=1
SHASUM="sha256sum"
if hash shasum 2>/dev/null; then
if hash sha256sum 2>/dev/null
then
SHASUM="sha256sum"
else
SHASUM="shasum -a 256"
fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment