Skip to content

Commit

Permalink
Following up on r1805461, fix the actual executable name for SHA256SUM
Browse files Browse the repository at this point in the history
in the dist.sh script.

* dist.sh: Invoke SHA256SUM=`sha256sum` rather than `sha1sum`.


git-svn-id: https://svn.apache.org/repos/asf/serf/trunk@1910054 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
evgenykotkov committed May 25, 2023
1 parent f0c81b6 commit 4ab5320
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dist.sh
Expand Up @@ -90,7 +90,7 @@ cd ${work}
# allow checksum tool names to be overridden
[ -n "$MD5SUM" ] || MD5SUM=md5sum
[ -n "$SHA1SUM" ] || SHA1SUM=sha1sum
[ -n "$SHA256SUM" ] || SHA256SUM=sha1sum
[ -n "$SHA256SUM" ] || SHA256SUM=sha256sum

echo ""
echo "Done:"
Expand Down

0 comments on commit 4ab5320

Please sign in to comment.