ci: discard misleading `cargo uninstall` errors in bk post-checkout hook (#32139)

This commit is contained in:
Trent Nelson 2023-06-14 16:01:48 -06:00 committed by GitHub
parent 60e36afd42
commit 26be1a3a0c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -39,6 +39,6 @@ source ci/env.sh
# HACK: These are in our docker images, need to be removed from CARGO_HOME
# because we try to cache downloads across builds with CARGO_HOME
# cargo lacks a facility for "system" tooling, always tries CARGO_HOME first
cargo uninstall cargo-audit || true
cargo uninstall svgbob_cli || true
cargo uninstall mdbook || true
cargo uninstall cargo-audit &>/dev/null || true
cargo uninstall svgbob_cli &>/dev/null || true
cargo uninstall mdbook &>/dev/null || true