diff options
author | James McCoy <jamessan@jamessan.com> | 2021-04-03 00:15:51 -0400 |
---|---|---|
committer | James McCoy <jamessan@jamessan.com> | 2021-04-08 08:13:39 -0400 |
commit | 6a03bcc3c2f65f376b14d2dbef6ade8fc483bf26 (patch) | |
tree | 2732f968d72621e2b02cf02e861cad3f1d669f11 /ci/common | |
parent | ce9b5848f9b5cec55997844ec54e8d4179391452 (diff) | |
download | rneovim-6a03bcc3c2f65f376b14d2dbef6ade8fc483bf26.tar.gz rneovim-6a03bcc3c2f65f376b14d2dbef6ade8fc483bf26.tar.bz2 rneovim-6a03bcc3c2f65f376b14d2dbef6ade8fc483bf26.zip |
fix(test): Detect more core filenames
Diffstat (limited to 'ci/common')
-rw-r--r-- | ci/common/test.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ci/common/test.sh b/ci/common/test.sh index 118e181dfa..92c15c8ba1 100644 --- a/ci/common/test.sh +++ b/ci/common/test.sh @@ -34,7 +34,7 @@ check_core_dumps() { cores="$(find /cores/ -type f -print)" local _sudo='sudo' else - cores="$(find ./ -type f -name 'core.*' -print)" + cores="$(find ./ -type f \( -name 'core.*' -o -name core -o -name nvim.core \) -print)" local _sudo= fi |