aboutsummaryrefslogtreecommitdiff
path: root/ci
diff options
context:
space:
mode:
authorJames McCoy <jamessan@jamessan.com>2021-04-09 09:48:35 -0400
committerGitHub <noreply@github.com>2021-04-09 09:48:35 -0400
commite3d0fb0d3cdc09a716e925627ca0da47224e1390 (patch)
treee97e81b57b57d9a845f897333e61d1c440bfe9eb /ci
parent8a1a256b44f7fe9f0d878d4d28d7f41f8157c4ea (diff)
parent6a03bcc3c2f65f376b14d2dbef6ade8fc483bf26 (diff)
downloadrneovim-e3d0fb0d3cdc09a716e925627ca0da47224e1390.tar.gz
rneovim-e3d0fb0d3cdc09a716e925627ca0da47224e1390.tar.bz2
rneovim-e3d0fb0d3cdc09a716e925627ca0da47224e1390.zip
Merge pull request #14321 from jamessan/ci-fixes
Some small cleanups/diagnostic improvements
Diffstat (limited to 'ci')
-rw-r--r--ci/common/test.sh2
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