mirror of
https://github.com/rust-lang/rust.git
synced 2025-01-23 13:13:17 +00:00
Silence rm warning when files are not existing
This commit is contained in:
parent
c0507a63fb
commit
a9ec4de6f2
@ -11,7 +11,7 @@ popd >/dev/null
|
|||||||
|
|
||||||
# Cleanup for previous run
|
# Cleanup for previous run
|
||||||
# v Clean target dir except for build scripts and incremental cache
|
# v Clean target dir except for build scripts and incremental cache
|
||||||
rm -r target/*/{debug,release}/{build,deps,examples,libsysroot*,native} || true
|
rm -r target/*/{debug,release}/{build,deps,examples,libsysroot*,native} 2>/dev/null || true
|
||||||
rm -r sysroot/ 2>/dev/null || true
|
rm -r sysroot/ 2>/dev/null || true
|
||||||
|
|
||||||
# Build libs
|
# Build libs
|
||||||
|
Loading…
Reference in New Issue
Block a user