Skip to content

Commit

Permalink
Quiet wget
Browse files Browse the repository at this point in the history
  • Loading branch information
keller-mark committed Apr 14, 2024
1 parent 42c8ae1 commit 136d7b5
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions scripts/cibw_linux_before_all.sh
Original file line number Diff line number Diff line change
Expand Up @@ -36,26 +36,26 @@ echo $BUILD_ARCH

case "$BUILD_ARCH" in
x86_64)
wget https://go.dev/dl/go1.20.12.linux-amd64.tar.gz
wget -q https://go.dev/dl/go1.20.12.linux-amd64.tar.gz
tar -C /usr/local -xzf go1.20.12.linux-amd64.tar.gz
;;
i686)
wget https://go.dev/dl/go1.20.12.linux-386.tar.gz
wget -q https://go.dev/dl/go1.20.12.linux-386.tar.gz
tar -C /usr/local -xzf go1.20.12.linux-386.tar.gz
;;

ppc64le)
wget https://go.dev/dl/go1.20.12.linux-ppc64le.tar.gz
wget -q https://go.dev/dl/go1.20.12.linux-ppc64le.tar.gz
tar -C /usr/local -xzf go1.20.12.linux-ppc64le.tar.gz
;;

aarch64)
wget https://go.dev/dl/go1.20.12.linux-arm64.tar.gz
wget -q https://go.dev/dl/go1.20.12.linux-arm64.tar.gz
tar -C /usr/local -xzf go1.20.12.linux-arm64.tar.gz
;;

s390x)
wget https://go.dev/dl/go1.20.12.linux-s390x.tar.gz
wget -q https://go.dev/dl/go1.20.12.linux-s390x.tar.gz
tar -C /usr/local -xzf go1.20.12.linux-s390x.tar.gz
;;

Expand Down

0 comments on commit 136d7b5

Please sign in to comment.