diff options
| author | Isaac Freund <mail@isaacfreund.com> | 2022-05-01 19:03:32 +0200 |
|---|---|---|
| committer | Isaac Freund <mail@isaacfreund.com> | 2022-05-01 19:03:32 +0200 |
| commit | 90b37645cf7744d8cc2a000fd3d74caf95bce204 (patch) | |
| tree | 571904b9c5d404c23a4ef05f49823b494d7c9fe5 /.github/workflows | |
| parent | 56fcab6ee9583326217e0c55305ca47378678aed (diff) | |
| download | river-90b37645cf7744d8cc2a000fd3d74caf95bce204.tar.gz river-90b37645cf7744d8cc2a000fd3d74caf95bce204.tar.xz | |
ci: make wget output non verbose
This still prints errors, but doesn't print progress bars or other
superfluous information.
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/ci_build.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/ci_build.yml b/.github/workflows/ci_build.yml index 64dc462..a75f6a1 100644 --- a/.github/workflows/ci_build.yml +++ b/.github/workflows/ci_build.yml @@ -43,7 +43,7 @@ jobs: -Dwerror=false -Db_ndebug=false --prefix /usr ninja -C build install - wget https://ziglang.org/download/0.9.1/zig-linux-x86_64-0.9.1.tar.xz + wget -nv https://ziglang.org/download/0.9.1/zig-linux-x86_64-0.9.1.tar.xz tar -xvf zig-linux-x86_64-0.9.1.tar.xz mv zig-linux-x86_64-0.9.1/zig /usr/bin/ mv zig-linux-x86_64-0.9.1/lib /usr/lib/zig |
