aboutsummaryrefslogtreecommitdiff
path: root/sh/shrc.d/gpg.sh
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2017-12-29 14:00:54 +1300
committerTom Ryder <tom@sanctum.geek.nz>2017-12-29 14:00:54 +1300
commit3de9597da74e483e5fc54a812cd5b78e6648c455 (patch)
tree6f4ca03289073ad1d602a8ca25ec44f586d0ddaa /sh/shrc.d/gpg.sh
parentMerge branch 'release/v0.21.0' (diff)
parentRebuild dotfiles(7) manual page (diff)
downloaddotfiles-3de9597da74e483e5fc54a812cd5b78e6648c455.tar.gz
dotfiles-3de9597da74e483e5fc54a812cd5b78e6648c455.zip
Merge branch 'release/v0.22.0'v0.22.0
* release/v0.22.0: Rebuild dotfiles(7) manual page Bump version number to 0.22.0 Update key fingerprint for finger(1) Use only fingerprints for GnuPG keys Remove --batch option and wrapper for gpg(1)
Diffstat (limited to 'sh/shrc.d/gpg.sh')
-rw-r--r--sh/shrc.d/gpg.sh10
1 files changed, 0 insertions, 10 deletions
diff --git a/sh/shrc.d/gpg.sh b/sh/shrc.d/gpg.sh
deleted file mode 100644
index 62d123ea..00000000
--- a/sh/shrc.d/gpg.sh
+++ /dev/null
@@ -1,10 +0,0 @@
-# Wrapper around gpg(1) to stop ``--batch'' breaking things
-gpg() {
- # shellcheck disable=SC2048
- case $* in
- *--ed*|*--gen-k*|*--sign-k*)
- set -- --no-batch "$@"
- ;;
- esac
- command gpg "$@"
-}