Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/HEAD'
Browse files Browse the repository at this point in the history
  • Loading branch information
mrcnk committed Jun 5, 2023
2 parents 6890bb0 + 0b0cf6e commit 7700d60
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/e2e-tests/decrypt_secret.sh
Expand Up @@ -6,7 +6,7 @@ DECRYPTED_FILE="$FILE_LOCATION/walletConfiguration.ts"

if [ -z "${WALLET_1_PASSWORD}" ]; then
echo "WALLET_1_PASSWORD environment variable is not set, aborting"
exit
exit 1
fi

# Decrypt the file
Expand Down
2 changes: 1 addition & 1 deletion packages/e2e-tests/encrypt_secret.sh
Expand Up @@ -5,7 +5,7 @@ DECRYPTED_FILE="$FILE_LOCATION/walletConfiguration.ts"

if [ -z "${WALLET_1_PASSWORD}" ]; then
echo "WALLET_1_PASSWORD environment variable is not set, aborting"
exit
exit 1
fi

gpg --symmetric --cipher-algo AES256 --batch --passphrase "$WALLET_1_PASSWORD" $DECRYPTED_FILE

0 comments on commit 7700d60

Please sign in to comment.