From eebe18fd7b676b9fbc93d40d9f4df73b49d86af6 Mon Sep 17 00:00:00 2001 From: Adam Simpson Date: Mon, 28 Mar 2022 16:56:16 -0400 Subject: [PATCH] fix: gon homebrew tap stopped working --- build.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build.sh b/build.sh index e3ea27c..9043abf 100755 --- a/build.sh +++ b/build.sh @@ -39,12 +39,12 @@ setup_keychain() { sign() { PLATFORM=$1 - gon -log-json -log-level=info "./${PLATFORM}-gon-config.json" + ./gon -log-json -log-level=info "./${PLATFORM}-gon-config.json" } setup_keychain -brew tap mitchellh/gon -brew install mitchellh/gon/gon +curl -LO "https://github.com/mitchellh/gon/releases/download/v0.2.3/gon_macos.zip" +unzip ./gon_macos.zip for PLATFORM in ${RELEASES}; do GOOS=$(echo "${PLATFORM}" | cut -d - -f 2) \