Skip to content

Commit 8f86d5e

Browse files
pblazerogoman
authored andcommitted
AR-915: Prevent whitespace from breaking property export (#2)
* AR-915: Prevent whitespace from breaking property export * AR-915 : increment VERSION number
1 parent 998e3e0 commit 8f86d5e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

kmsencryption/scripts/decrypt-and-start

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ for KVP in $ENV_VARS; do
88
VALUE=$(echo ${KVP} | cut -d '=' -f 2-)
99
if [[ "${VALUE}" == decrypt:* ]]; then
1010
echo "Decrypting the value of ${NAME}..."
11-
export "${NAME}"=$(kms-encryption decrypt --env "${NAME}" --prefix "decrypt:")
11+
export "${NAME}"="$(kms-encryption decrypt --env "${NAME}" --prefix "decrypt:")"
1212
fi
1313
done
1414

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
setup(
55
name='kms-encryption-toolbox',
6-
version='0.0.13',
6+
version='0.0.14',
77
url='https://github.com/ApplauseOSS/kms-encryption-toolbox',
88
license='Applause',
99
description='Encryption toolbox to be used with the Amazon Key Management Service for securing your deployment secrets. It encapsulates the aws-encryption-sdk package to expose cmdline actions.',

0 commit comments

Comments
 (0)