From b9ce826c3c3520c223940a3e007ed12d8b2c8c90 Mon Sep 17 00:00:00 2001 From: PrincessPi3 Date: Sat, 13 Jun 2026 15:25:44 -0600 Subject: [PATCH] fix --- create-attributable-archive.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/create-attributable-archive.sh b/create-attributable-archive.sh index 917dcf5..3e49738 100755 --- a/create-attributable-archive.sh +++ b/create-attributable-archive.sh @@ -6,7 +6,7 @@ set -o pipefail IFS=$'\n\t' unix_seconds=$(date +%s) -key_path="./.private_ed25519_${unix_seconds}" +key_path=".private_ed25519_${unix_seconds}" attribution_keystore=".attribution_passphrase_${unix_seconds}" signature_tag="file-integrity" out_dir="./out" @@ -282,6 +282,10 @@ printf 'Auditing attribution passphrase...\n' ret=`audit_passphrase "$attribution_passphrase" "$attribution_passphrase_check"` echo "$ret" +printf 'Saving Attribution Passphrase' +echo "$attribution_passphrase" > "$attribution_keystore" +checkcode $? + printf 'Unsetting attribution_passphrase_check...\n' unset attribution_passphrase_check