aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ci/common/test.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/ci/common/test.sh b/ci/common/test.sh
index bc80dfead7..a6afd1df4c 100644
--- a/ci/common/test.sh
+++ b/ci/common/test.sh
@@ -34,8 +34,10 @@ check_core_dumps() {
local app="${1:-${BUILD_DIR}/bin/nvim}"
if test "${TRAVIS_OS_NAME}" = osx ; then
local cores="$(find /cores/ -type f -print)"
+ local _sudo='sudo'
else
local cores="$(find ./ -type f -name 'core.*' -print)"
+ local _sudo=
fi
if test -z "${cores}" ; then
@@ -45,7 +47,7 @@ check_core_dumps() {
for core in $cores; do
if test "$del" = "1" ; then
print_core "$app" "$core" >&2
- rm "$core"
+ "$_sudo" rm "$core"
else
print_core "$app" "$core"
fi