aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZyX <kp-pav@yandex.ru>2017-04-04 04:17:40 +0300
committerZyX <kp-pav@yandex.ru>2017-04-04 04:17:40 +0300
commitdcad882256af21bb620f580ff8a112691cd149db (patch)
treeeafdce9bfb66c4d72adea0dbc60b14cca52eb3fa
parentd59378a5cafd3408a1cbecfd8c4de1a96198c81d (diff)
downloadrneovim-dcad882256af21bb620f580ff8a112691cd149db.tar.gz
rneovim-dcad882256af21bb620f580ff8a112691cd149db.tar.bz2
rneovim-dcad882256af21bb620f580ff8a112691cd149db.zip
ci: Do not fail csi_clean if there are no files to remove
-rwxr-xr-xci/run_lint.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/ci/run_lint.sh b/ci/run_lint.sh
index 82a8532850..39a90102e7 100755
--- a/ci/run_lint.sh
+++ b/ci/run_lint.sh
@@ -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
}