From 560732f908508b39310d7cf72e166f2e7d509bbb Mon Sep 17 00:00:00 2001 From: Lucas Date: Mon, 5 Sep 2022 01:16:23 +0000 Subject: [PATCH] sekrit: replace gpg2 with gpg --- bin/sekrit.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/sekrit.sh b/bin/sekrit.sh index 63ddc4e..afaf1f8 100644 --- a/bin/sekrit.sh +++ b/bin/sekrit.sh @@ -69,7 +69,7 @@ to_number() _sekrit_decrypt() { - gpg2 -qd "$1" + gpg -qd "$1" } sekrit_add() @@ -87,7 +87,7 @@ sekrit_add() printf "%s\n" "$*" else cat - - fi | gpg2 -qae -r "$SEKRIT_GPG_ID" >"$path" + fi | gpg -qae -r "$SEKRIT_GPG_ID" >"$path" } sekrit_cp()