diff options
author | kaotisk <kaotisk@arching-kaos.org> | 2025-02-15 17:59:03 +0200 |
---|---|---|
committer | kaotisk <kaotisk@arching-kaos.org> | 2025-02-15 17:59:03 +0200 |
commit | e41ae82a1b53032bef4df0db762a08225caca4f9 (patch) | |
tree | d462c695e070ac54d0884fa4799b872e6db9824c /bin/ak-gpg | |
parent | 09e3a2e9b3111f5e6605121f6419c670135dd921 (diff) | |
download | arching-kaos-tools-e41ae82a1b53032bef4df0db762a08225caca4f9.tar.gz arching-kaos-tools-e41ae82a1b53032bef4df0db762a08225caca4f9.tar.bz2 arching-kaos-tools-e41ae82a1b53032bef4df0db762a08225caca4f9.zip |
Breaking changes, the gpg field inside config is an object now!
Diffstat (limited to 'bin/ak-gpg')
-rwxr-xr-x | bin/ak-gpg | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -63,7 +63,7 @@ if [ ! -z $1 ]; then --example) example; exit;; --get-key-self-as-ipfs) _ak_gpg_key_self_get_fingerprint_from_config; exit;; --get-key-self-as-fingerprint) _ak_gpg_key_self_get_fingerprint; exit;; - --get-key-fingerprint-from-ipfs) _ak_gpg_key_get_fingerprint_from_ipfs $1; exit;; + --get-key-fingerprint-from-ipfs) shift; _ak_gpg_key_get_fingerprint_from_ipfs $1; exit;; --export-key-self-to-file) _ak_gpg_key_self_export 'self.pub'; exit;; --clear-sign) shift; _ak_gpg_sign_clear "$2" "$1"; exit;; --verify-file) shift; _ak_gpg_verify_clear_signature "$1"; exit;; |