commit 7165707bbebb0948c0a80eba02e457d7a33ad0a5 parent 22172b8a8e69fca7237f85950ec98e20c09b4571 Author: hhvn <dev@hhvn.uk> Date: Sun, 11 Jul 2021 17:21:38 +0100 .s/b/plumb: evaluate $arg in child Diffstat:
M | .scripts/bin/plumb | | | 6 | +++--- |
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/.scripts/bin/plumb b/.scripts/bin/plumb @@ -143,15 +143,15 @@ do # local files now fmatches "PGP.*public.*key|PGP.*ring" && isfile && - plumb terminal "gpg --import $arg; sleep 5" + plumb terminal 'gpg --import $arg; sleep 5' fmatches "PGP.*signature" && isfile && - plumb terminal "gpg --verify $arg; sleep 5" + plumb terminal 'gpg --verify $arg; sleep 5' fmatches "PGP.*message|PGP.*encrypted" && isfile && - plumb terminal "gpg -d $arg; sleep 5" + plumb terminal 'gpg -d $arg; sleep 5' matches "\.(atom|rss)$|rss\.xml$" || fmatches "atom|rss" ||