Skip to content

Commit 3311b6f

Browse files
authored
Fix logic for OS check
1 parent 29738aa commit 3311b6f

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)