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.
This commit is contained in:
parent
ee4b939efa
commit
ec55ed39ee
|
@ -25,7 +25,7 @@ jobs:
|
|||
script: yarn && yarn vscode && travis_wait 60 ci/release.sh
|
||||
|
||||
before_deploy:
|
||||
- echo "$JSON_KEY" | base64 -d > ./ci/key.json
|
||||
- echo "$JSON_KEY" | base64 --decode > ./ci/key.json
|
||||
|
||||
deploy:
|
||||
- provider: releases
|
||||
|
|
Loading…
Reference in New Issue