1
0
Fork 0
docsearch/scripts/travis/is-pr

6 lines
119 B
Bash
Executable file

#!/usr/bin/env bash
# Check if in a Pull Request
if [ "$TRAVIS_EVENT_TYPE" = "pull_request" ]; then
exit 0
fi
exit 1