Skip to content

Commit 00a2cbb

Browse files
committed
Use OpenSSL for B64 encoding not base64 which differs between Linux and Mac #140
1 parent 3041bc7 commit 00a2cbb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

transcrypt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ git_clean() {
148148
# Encrypt file to binary ciphertext
149149
ENC_PASS=$password "$openssl_path" enc -e "-${cipher}" -md MD5 -pass env:ENC_PASS -S "$salt" -in "$tempfile"
150150
) |
151-
base64
151+
openssl base64
152152
else
153153
# Encrypt file to base64 ciphertext
154154
ENC_PASS=$password "$openssl_path" enc -e -a "-${cipher}" -md MD5 -pass env:ENC_PASS -S "$salt" -in "$tempfile"

0 commit comments

Comments
 (0)