diff options
author | kaotisk <kaotisk@arching-kaos.com> | 2022-02-11 09:37:47 +0200 |
---|---|---|
committer | kaotisk <kaotisk@arching-kaos.com> | 2022-02-11 09:37:47 +0200 |
commit | 6185e933cf51bb9cc6d43d03b0bcbbb424f084a8 (patch) | |
tree | 414baa69ec2393d25ea6f393174f47afbc8280cd | |
parent | b5a3b718159d1ec0aa8edc585c196fc1357f85e8 (diff) | |
download | arching-kaos-tools-6185e933cf51bb9cc6d43d03b0bcbbb424f084a8.tar.gz arching-kaos-tools-6185e933cf51bb9cc6d43d03b0bcbbb424f084a8.tar.bz2 arching-kaos-tools-6185e933cf51bb9cc6d43d03b0bcbbb424f084a8.zip |
Removed TEMPASSIN from FILE path on gpg command as well
-rwxr-xr-x | bin/ak-files | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/ak-files b/bin/ak-files index 58f0106..ea2114b 100755 --- a/bin/ak-files +++ b/bin/ak-files @@ -69,7 +69,7 @@ main(){ fi logthis "Signing..." SIGN_FILE=$FILENAME".asc" - gpg2 --detach-sign --sign-with $FINGERPRINT --armor --output $SIGN_FILE $TEMPASSIN/$FILE + gpg2 --detach-sign --sign-with $FINGERPRINT --armor --output $SIGN_FILE $FILE if [ $? == 0 ]; then logthis "Signed" else |