From 53387920d9b65c0f6a1033d18e518af6acfc7d95 Mon Sep 17 00:00:00 2001 From: Storm Dragon Date: Wed, 17 Jul 2019 19:18:13 -0400 Subject: [PATCH] Fixed a deprecated gpg flag. --- fleacollar.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fleacollar.sh b/fleacollar.sh index 2dafc62..d4aa309 100755 --- a/fleacollar.sh +++ b/fleacollar.sh @@ -167,7 +167,7 @@ EOF echo "set pgp_timeout=1800" >> "$muttHome/gpg.rc" if [[ $(gpg --list-secret-keys | wc -l) -eq 0 ]]; then read -p "$(gettext "No gpg key was found. Type your name and press entr to quickly generate a PGP key.control+c if you would like to create it manually.") " continue - gpg --quick-gen-key "${continue:-${USER}}" + gpg --gen-key "${continue:-${USER}}" fi PS3="$(gettext "Select the key you want to use for encryption/signing:")" select key in $(gpg --list-secret-keys | grep '.*@.*' | cut -d '<' -f2 | cut -d '>' -f1) ; do