Skip to content

Commit a9ec4de

Browse files
committed
Silence rm warning when files are not existing
1 parent c0507a6 commit a9ec4de

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build_sysroot/build_sysroot.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ popd >/dev/null
1111

1212
# Cleanup for previous run
1313
# v Clean target dir except for build scripts and incremental cache
14-
rm -r target/*/{debug,release}/{build,deps,examples,libsysroot*,native} || true
14+
rm -r target/*/{debug,release}/{build,deps,examples,libsysroot*,native} 2>/dev/null || true
1515
rm -r sysroot/ 2>/dev/null || true
1616

1717
# Build libs

0 commit comments

Comments
 (0)