diff options
author | kaotisk <kaotisk@arching-kaos.com> | 2022-02-11 09:36:31 +0200 |
---|---|---|
committer | kaotisk <kaotisk@arching-kaos.com> | 2022-02-11 09:36:31 +0200 |
commit | b5a3b718159d1ec0aa8edc585c196fc1357f85e8 (patch) | |
tree | ef010c4c207e95a09751133fbf18513450903916 | |
parent | 221672ff13aeb390bccbf14a443733667ac9a77b (diff) | |
download | arching-kaos-tools-b5a3b718159d1ec0aa8edc585c196fc1357f85e8.tar.gz arching-kaos-tools-b5a3b718159d1ec0aa8edc585c196fc1357f85e8.tar.bz2 arching-kaos-tools-b5a3b718159d1ec0aa8edc585c196fc1357f85e8.zip |
Removed TEMPASSIN from SIGN_FILE path on gpg command
-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 14657a4..58f0106 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 $TEMPASSIN/$SIGN_FILE $TEMPASSIN/$FILE + gpg2 --detach-sign --sign-with $FINGERPRINT --armor --output $SIGN_FILE $TEMPASSIN/$FILE if [ $? == 0 ]; then logthis "Signed" else |