Skip to content

Commit

Permalink
Turn off wget verbose mode to reduce buildlog noise
Browse files Browse the repository at this point in the history
  • Loading branch information
floatingatoll committed Nov 2, 2022
1 parent 637e0a7 commit bf43b30
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ci/install_deps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ case "${dpkgArch##*-}" in
*) echo >&2 "unsupported architecture: ${dpkgArch}"; exit 1 ;;
esac;
url="https://static.rust-lang.org/rustup/archive/1.22.1/${rustArch}/rustup-init";
wget "$url"
wget --no-verbose "$url"
echo "${rustupSha256} *rustup-init" | sha256sum -c -
chmod +x rustup-init
./rustup-init -y --no-modify-path --default-toolchain $RUST_VERSION
Expand Down

0 comments on commit bf43b30

Please sign in to comment.