diff options
author | realtyem <realtyem@gmail.com> | 2022-12-05 04:29:55 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-05 10:29:55 +0000 |
commit | 05eb55f57dfe7fbd0d7b4403c1834318d282da0d (patch) | |
tree | 87f6fda3747a9a01da6824639b018b228182d612 /.ci | |
parent | Bump cryptography from 38.0.3 to 38.0.4 (#14616) (diff) | |
download | synapse-05eb55f57dfe7fbd0d7b4403c1834318d282da0d.tar.xz |
Handle 'go get' deprecation (#14611)
* Switch out 'go get' for 'go install'. * Changelog
Diffstat (limited to '.ci')
-rwxr-xr-x | .ci/scripts/setup_complement_prerequisites.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.ci/scripts/setup_complement_prerequisites.sh b/.ci/scripts/setup_complement_prerequisites.sh index 42ef654167..3778478da6 100755 --- a/.ci/scripts/setup_complement_prerequisites.sh +++ b/.ci/scripts/setup_complement_prerequisites.sh @@ -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 |