Skip to content

Commit 19c2fa6

Browse files
committed
Update decryption command
1 parent 565dd91 commit 19c2fa6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

github-action-build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ EOL
102102
# NB: Key and iv values were given as arguments.
103103
echo
104104
echo "== Decrypting GPG keypair =="
105-
openssl aes-256-cbc -pbkdf2 -K "$key" -iv "$iv" -in "$keyFile.enc" -out "$keyFile" -d
105+
openssl enc -nosalt -aes-256-cbc -d -K "$key" -iv "$iv" -in "$keyFile.enc" -out "$keyFile"
106106
checkSuccess $?
107107
fi
108108
if [ "$deployOK" -a -f "$keyFile" ]; then

0 commit comments

Comments
 (0)