Author: jim
Date: Sat Aug  5 20:34:27 2017
New Revision: 1804213

URL: http://svn.apache.org/viewvc?rev=1804213&view=rev
Log:
extend so we can sign whatever we have handy

Modified:
    openoffice/devtools/release-scripts/hash-sign.sh

Modified: openoffice/devtools/release-scripts/hash-sign.sh
URL: 
http://svn.apache.org/viewvc/openoffice/devtools/release-scripts/hash-sign.sh?rev=1804213&r1=1804212&r2=1804213&view=diff
==============================================================================
--- openoffice/devtools/release-scripts/hash-sign.sh (original)
+++ openoffice/devtools/release-scripts/hash-sign.sh Sat Aug  5 20:34:27 2017
@@ -1,9 +1,9 @@
 #!/bin/sh
 #
-# hash-sign.sh : hash and sign the specified files (.tar.gz or .dmg)
-#                in the current dir
+# hash-sign.sh : hash and sign the following file types
+#                in the current dir: .tar.gz, .tar.bz2, .dmg, .zip
+#                and .exe
 #
-## NOTE: This is macOS and Linux specific... 
 user=""
 case "$1" in
   -u)
@@ -13,7 +13,7 @@ case "$1" in
     ;;
 esac
 
-allfiles=`find . -type f \\( -name '*.tar.gz' -or -name '*.tar.bz2' -or -name 
'*.dmg' -or -name '*.zip' \\)`
+allfiles=`find . -type f \\( -name '*.tar.gz' -or -name '*.tar.bz2' -or -name 
'*.dmg' -or -name '*.zip' -or -name '*.exe' \\)`
 
 echo ""
 echo "Generating MD5/SHA1/SHA256 checksum files ..."


Reply via email to