Skip to content

Commit ec55ed3

Browse files
committed
Fix json key decoding on Mac
It seems the short flag in MacOS is -D, not -d. The long flag is the same. There are no other options with -d so I'm not sure why.
1 parent ee4b939 commit ec55ed3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
script: yarn && yarn vscode && travis_wait 60 ci/release.sh
2626

2727
before_deploy:
28-
- echo "$JSON_KEY" | base64 -d > ./ci/key.json
28+
- echo "$JSON_KEY" | base64 --decode > ./ci/key.json
2929

3030
deploy:
3131
- provider: releases

0 commit comments

Comments
 (0)