Commit 61b74134 authored by Guilhem Bonnefille's avatar Guilhem Bonnefille
Browse files

fix: make install_yq quiet

No need to see the download progress.
parent 3ec289fd
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -476,7 +476,7 @@ stages:
      yq_binary=$1
      yq_version=$2
      yq_url="https://github.com/mikefarah/yq/releases/download/${yq_version}/${yq_binary}.tar.gz"
      wget "${yq_url}" -O - | tar xz && mv "${yq_binary}" /usr/bin/yq
      wget -q "${yq_url}" -O - | tar xz && mv "${yq_binary}" /usr/bin/yq
    fi
  }