From 6c609b28758e672d4bb2307ba2351352e6cb8c43 Mon Sep 17 00:00:00 2001 From: Karuppiah Natarajan Date: Wed, 23 Dec 2020 20:30:05 +0530 Subject: [PATCH] update install script with the latest goreleaser config this includes installing windows binaries for 32 bit and 64 bit systems --- scripts/install.sh | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/scripts/install.sh b/scripts/install.sh index fa64c35..c8cefdc 100755 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -1,6 +1,6 @@ #!/bin/sh set -e -# Code generated by godownloader on 2019-12-28T14:36:27Z. DO NOT EDIT. +# Code generated by godownloader on 2020-12-23T14:59:45Z. DO NOT EDIT. # usage() { @@ -66,6 +66,8 @@ get_binaries() { darwin/amd64) BINARIES="helm-schema-gen" ;; linux/386) BINARIES="helm-schema-gen" ;; linux/amd64) BINARIES="helm-schema-gen" ;; + windows/386) BINARIES="helm-schema-gen" ;; + windows/amd64) BINARIES="helm-schema-gen" ;; *) 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 @@ -89,6 +91,9 @@ tag_to_version() { } adjust_format() { # change format (tar.gz or zip) based on OS + case ${OS} in + windows) FORMAT=zip ;; + esac true } adjust_os() {