machi/priv/test-for-gh-pr.sh
Scott Lystig Fritchie 5f953bc5dd Grr, comma
2015-10-16 18:25:23 +09:00

10 lines
148 B
Bash
Executable file

#!/bin/sh
set -x
if [ "${TRAVIS_PULL_REQUEST}" = "false" ]; then
echo '$TRAVIS_PULL_REQUEST is false, skipping tests'
exit 0
else
make test
fi