8 lines
81 B
Bash
Executable File
8 lines
81 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
set -x
|
|
|
|
if [ ${TRAVIS_OS_NAME} != "osx" ]; then
|
|
exit 0
|
|
fi
|