Skip to content

Commit f12db26

Browse files
committed
internal/quic/cmd/interop: use wget --no-verbose in Dockerfile
Pass --no-verbose to wget to avoid spamming the build logs with progress indicators. Change-Id: I36a0b91f8dac09cc4055c5d5db3fc61c9b269d6e Reviewed-on: https://go-review.googlesource.com/c/net/+/551495 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Jonathan Amsterdam <jba@google.com>
1 parent c136d0c commit f12db26

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/quic/cmd/interop/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ ENV GOVERSION=1.21.1
99

1010
RUN platform=$(echo ${TARGETPLATFORM} | tr '/' '-') && \
1111
filename="go${GOVERSION}.${platform}.tar.gz" && \
12-
wget https://dl.google.com/go/${filename} && \
12+
wget --no-verbose https://dl.google.com/go/${filename} && \
1313
tar xfz ${filename} && \
1414
rm ${filename}
1515

0 commit comments

Comments
 (0)