[rs-commit] r13 - /dev/Makefile
rs-commit at redwax.eu
rs-commit at redwax.eu
Thu Dec 12 15:52:15 CET 2019
Author: minfrin at redwax.eu
Date: Thu Dec 12 15:52:13 2019
New Revision: 13
Log:
Put correct quotes around the find parameter so it is not interpreted by a shell.
Modified:
dev/Makefile
Modified: dev/Makefile
==============================================================================
--- dev/Makefile (original)
+++ dev/Makefile Thu Dec 12 15:52:13 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 --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 --armor --output - --detach-sign {} >> {}.asc" \;
More information about the rs-commit
mailing list