From c0bfc39486ac0672d78e4637a45dcedd05995084 Mon Sep 17 00:00:00 2001 From: tituspijean Date: Thu, 25 Aug 2022 00:03:07 +0200 Subject: [PATCH] v0.9.4 dropped goose and requires Go 1.18 --- scripts/_common.sh | 2 +- scripts/install | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/scripts/_common.sh b/scripts/_common.sh index cd22c33..439b020 100644 --- a/scripts/_common.sh +++ b/scripts/_common.sh @@ -7,7 +7,7 @@ # dependencies used by the app pkg_dependencies="postgresql postgresql-contrib" -GO_VERSION="1.16" +GO_VERSION="1.18" #================================================= # PERSONAL HELPERS diff --git a/scripts/install b/scripts/install index 2a44872..4809a8e 100644 --- a/scripts/install +++ b/scripts/install @@ -137,7 +137,6 @@ pushd "$final_path/build" export GOPATH="$final_path/build/go" export GOCACHE="$final_path/build/.cache" CGO_ENABLED=1 go build -trimpath -v -o "$final_path/bin/" ./cmd/dendrite-monolith-server > /dev/null 2>&1 - CGO_ENABLED=1 go build -trimpath -v -o "$final_path/bin/" ./cmd/goose > /dev/null 2>&1 CGO_ENABLED=1 go build -trimpath -v -o "$final_path/bin/" ./cmd/create-account > /dev/null 2>&1 CGO_ENABLED=1 go build -trimpath -v -o "$final_path/bin/" ./cmd/generate-keys > /dev/null 2>&1 popd