From 47a8a4b8783ec9f9cd4e90e6289eca5ca934c6f8 Mon Sep 17 00:00:00 2001 From: Tamir Duberstein Date: Mon, 14 Aug 2023 10:36:37 -0400 Subject: [PATCH] github: reduce wget verbosity, remove -q This allows errors to be shown; -q hides *all* output, which is not what we want. --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1ff70200..f886c2a9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -212,7 +212,7 @@ jobs: printf '%s\0' \ linux-image-6.1.0-10-cloud-arm64-unsigned_6.1.38-2_arm64.deb \ linux-image-6.4.0-1-cloud-arm64-unsigned_6.4.4-2_arm64.deb \ - | xargs -0 -t -P0 -I {} wget -nd -q -P test/.tmp/debian-kernels/arm64 ftp://ftp.us.debian.org/debian/pool/main/l/linux/{} + | xargs -0 -t -P0 -I {} wget -nd -nv -P test/.tmp/debian-kernels/arm64 ftp://ftp.us.debian.org/debian/pool/main/l/linux/{} - name: Download debian kernels if: runner.arch == 'X64' @@ -225,7 +225,7 @@ jobs: printf '%s\0' \ linux-image-6.1.0-10-cloud-amd64-unsigned_6.1.38-2_amd64.deb \ linux-image-6.4.0-1-cloud-amd64-unsigned_6.4.4-2_amd64.deb \ - | xargs -0 -t -P0 -I {} wget -nd -q -P test/.tmp/debian-kernels/amd64 ftp://ftp.us.debian.org/debian/pool/main/l/linux/{} + | xargs -0 -t -P0 -I {} wget -nd -nv -P test/.tmp/debian-kernels/amd64 ftp://ftp.us.debian.org/debian/pool/main/l/linux/{} - name: Alias gtar as tar if: runner.os == 'macOS'