From aaefe1ae6f1353123b0745be35fd67648dfc4ca8 Mon Sep 17 00:00:00 2001 From: Vijay Pillai Date: Wed, 26 Jan 2022 10:47:20 -0500 Subject: [PATCH] remove windows support from bouncer.sh and also add linux/arm64 and darwin/arm64 to list of supported platforms (#3) Signed-off-by: Vijay Pillai --- bouncer.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bouncer.sh b/bouncer.sh index b053d5d..6a91581 100755 --- a/bouncer.sh +++ b/bouncer.sh @@ -64,7 +64,8 @@ get_binaries() { case "$PLATFORM" in darwin/amd64) BINARIES="bouncer" ;; linux/amd64) BINARIES="bouncer" ;; - windows/amd64) BINARIES="bouncer" ;; + darwin/arm64) BINARIES="bouncer" ;; + linux/arm64) BINARIES="bouncer" ;; *) log_crit "platform $PLATFORM is not supported. Make sure this script is up-to-date and file request at https://github.com/${PREFIX}/issues/new" exit 1