diff options
author | ZyX <kp-pav@yandex.ru> | 2017-04-04 04:17:40 +0300 |
---|---|---|
committer | ZyX <kp-pav@yandex.ru> | 2017-04-04 04:17:40 +0300 |
commit | dcad882256af21bb620f580ff8a112691cd149db (patch) | |
tree | eafdce9bfb66c4d72adea0dbc60b14cca52eb3fa | |
parent | d59378a5cafd3408a1cbecfd8c4de1a96198c81d (diff) | |
download | rneovim-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-x | ci/run_lint.sh | 2 |
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 } |