Author: skygo
Date: Fri Feb 16 12:14:03 2024
New Revision: 67363

Log:
verify gpg with target

Modified:
    dev/netbeans/testrelease.sh

Modified: dev/netbeans/testrelease.sh
==============================================================================
--- dev/netbeans/testrelease.sh (original)
+++ dev/netbeans/testrelease.sh Fri Feb 16 12:14:03 2024
@@ -45,4 +45,11 @@ for z in $(find . -name '*.sha512'); do
 echo "Press a key"
 read a
 echo "Scanning for signature"
-find . -name '*.asc' -exec gpg --verify {} \;
+for z in $(find . -name '*.asc');
+do
+   cd $(dirname $z);
+   filename=`basename $z`
+   gpg --verify ${filename} ${filename%.asc}  ;
+   cd - >/dev/null;
+done 
+##find . -name '*.asc' -exec gpg --verify {} {} \;



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists

Reply via email to