Skip to content

Commit 99b9208

Browse files
authored
Merge pull request #1076 from mongodb/1.6-fix-debug-core
Fix logic for OS check
2 parents 29738aa + 3311b6f commit 99b9208

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.travis.scripts/debug-core.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/sh
22

3-
if [ "${TRAVIS_OS_NAME}" != "osx" ]; then
3+
if [ "${TRAVIS_OS_NAME}" = "osx" ]; then
44
# https://www.ics.uci.edu/~pattis/common/handouts/macmingweclipse/allexperimental/mac-gdb-install.html
55
echo "Cannot debug core files on macOS: ${1}"
66
exit 1

0 commit comments

Comments
 (0)