1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/dendrite_ynh.git synced 2024-09-03 18:25:58 +02:00

v0.9.4 dropped goose and requires Go 1.18

This commit is contained in:
tituspijean 2022-08-25 00:03:07 +02:00
parent 475caf74aa
commit c0bfc39486
No known key found for this signature in database
GPG key ID: EF3B0D7CC0A94720
2 changed files with 1 additions and 2 deletions

View file

@ -7,7 +7,7 @@
# dependencies used by the app
pkg_dependencies="postgresql postgresql-contrib"
GO_VERSION="1.16"
GO_VERSION="1.18"
#=================================================
# PERSONAL HELPERS

View file

@ -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