aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkaotisk <kaotisk@arching-kaos.com>2022-02-11 09:37:47 +0200
committerkaotisk <kaotisk@arching-kaos.com>2022-02-11 09:37:47 +0200
commit6185e933cf51bb9cc6d43d03b0bcbbb424f084a8 (patch)
tree414baa69ec2393d25ea6f393174f47afbc8280cd
parentb5a3b718159d1ec0aa8edc585c196fc1357f85e8 (diff)
downloadarching-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-xbin/ak-files2
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