0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-05-21 21:13:44 +02:00

Handle 'go get' deprecation (#14611)

* Switch out 'go get' for 'go install'.

* Changelog
This commit is contained in:
realtyem 2022-12-05 04:29:55 -06:00 committed by GitHub
parent 057cc7850a
commit 05eb55f57d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View file

@ -21,7 +21,7 @@ endblock
block Install Complement Dependencies
sudo apt-get -qq update && sudo apt-get install -qqy libolm3 libolm-dev
go get -v github.com/gotesttools/gotestfmt/v2/cmd/gotestfmt@latest
go install -v github.com/gotesttools/gotestfmt/v2/cmd/gotestfmt@latest
endblock
block Install custom gotestfmt template

1
changelog.d/14611.misc Normal file
View file

@ -0,0 +1 @@
Switch to Go recommended installation method for `gotestfmt` template in CI.