Skip to content
This repository was archived by the owner on Feb 20, 2026. It is now read-only.

Commit 62d7e4f

Browse files
authored
build: replace wget with pre-installed curl (#865)
1 parent 07f69a7 commit 62d7e4f

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

system-test/integration_test.sh

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,7 @@ go version
3434
# Ensure a newer version of Go is used so it is compatible with newer libraries.
3535
# The current Go version in the VM is 1.18.4, however we explicitly set it to
3636
# pin the Go dependency to v1.18.4 for consistency.
37-
retry sudo apt-get install -y wget
38-
39-
wget https://go.dev/dl/go1.18.4.linux-amd64.tar.gz
37+
retry curl -LO https://go.dev/dl/go1.18.4.linux-amd64.tar.gz
4038
sudo rm -rf /usr/local/go && tar -C /usr/local -xzf go1.18.4.linux-amd64.tar.gz
4139
export PATH=$PATH:/usr/local/go/bin
4240

0 commit comments

Comments
 (0)