[rs-commit] r15 - /dev/Makefile

rs-commit at redwax.eu rs-commit at redwax.eu
Fri Dec 13 19:13:03 CET 2019


Author: dirkx at redwax.eu
Date: Fri Dec 13 19:13:01 2019
New Revision: 15

Log:
Make it possible to provide a specific chipcard/uid argument during signing.

Modified:
    dev/Makefile

Modified: dev/Makefile
==============================================================================
--- dev/Makefile	(original)
+++ dev/Makefile	Fri Dec 13 19:13:01 2019
@@ -14,12 +14,12 @@
 all: verify
 
 verify:
-	find . -name '*.asc' -exec bash -c "basename {}; gpg2 --armor --verify '{}'" \;
+	find . -name '*.asc' -exec bash -c "basename {}; gpg2 ${GPG2FLAGS} --armor --verify '{}'" \;
 
 #	test -s "$?" && gpg2 --armor --verify $? || true
 
 sign: sign-tar.gz sign-tar.bz2
 
 sign-%:
-	find . -name '*.$*' -exec bash -c "gpg2 --armor --output - --detach-sign {} >> {}.asc" \;
+	find . -name '*.$*' -exec bash -c "gpg2 ${GPG2FLAGS} --armor --output - --detach-sign {} >> {}.asc" \;
 



More information about the rs-commit mailing list