ci: Do not fail csi_clean if there are no files to remove

This commit is contained in:
ZyX 2017-04-04 04:17:40 +03:00
parent d59378a5ca
commit dcad882256
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ enter_suite 'lint'
set -x
csi_clean() {
rm "${BUILD_DIR}"/bin/test-includes-*
find "${BUILD_DIR}/bin" -name 'test-includes-*' -delete
find "${BUILD_DIR}" -name '*test-include*.o' -delete
}