Silence rm warning when files are not existing

This commit is contained in:
bjorn3 2020-09-29 13:26:32 +02:00
parent c0507a63fb
commit a9ec4de6f2

View File

@ -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