From ec55ed39ee86294a81ca967b4f0ef21d4d613e00 Mon Sep 17 00:00:00 2001 From: Asher Date: Tue, 3 Mar 2020 16:01:22 -0600 Subject: [PATCH] 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. --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index be6d96fc5..9b18fcc6a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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