You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@serf.apache.org by ko...@apache.org on 2023/05/25 13:02:05 UTC

svn commit: r1910054 - /serf/trunk/dist.sh

Author: kotkov
Date: Thu May 25 13:02:05 2023
New Revision: 1910054

URL: http://svn.apache.org/viewvc?rev=1910054&view=rev
Log:
Following up on r1805461, fix the actual executable name for SHA256SUM
in the dist.sh script.

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

Modified:
    serf/trunk/dist.sh

Modified: serf/trunk/dist.sh
URL: http://svn.apache.org/viewvc/serf/trunk/dist.sh?rev=1910054&r1=1910053&r2=1910054&view=diff
==============================================================================
--- serf/trunk/dist.sh (original)
+++ serf/trunk/dist.sh Thu May 25 13:02:05 2023
@@ -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:"