ci: suppress cargo tree output

This commit is contained in:
Trent Nelson
2021-07-16 15:03:57 -06:00
committed by Trent Nelson
parent 96a7cedaca
commit 59cd0556ef
2 changed files with 2 additions and 2 deletions

View File

@ -14,7 +14,7 @@ scripts/increment-cargo-version.sh check
# Disallow uncommitted Cargo.lock changes # Disallow uncommitted Cargo.lock changes
( (
_ scripts/cargo-for-all-lock-files.sh tree _ scripts/cargo-for-all-lock-files.sh tree >/dev/null
set +e set +e
if ! _ git diff --exit-code; then if ! _ git diff --exit-code; then
echo -e "\nError: Uncommitted Cargo.lock changes" 1>&2 echo -e "\nError: Uncommitted Cargo.lock changes" 1>&2

View File

@ -148,7 +148,7 @@ for file in "${markdownFiles[@]}"; do
done done
# Update cargo lock files # Update cargo lock files
scripts/cargo-for-all-lock-files.sh tree scripts/cargo-for-all-lock-files.sh tree >/dev/null
echo "$currentVersion -> $newVersion" echo "$currentVersion -> $newVersion"