7 lines
102 B
Bash
Executable file
7 lines
102 B
Bash
Executable file
#!/usr/bin/env bash
|
|
# Check if on master
|
|
if [ "$TRAVIS_BRANCH" = "master" ]; then
|
|
exit 0
|
|
fi
|
|
|
|
exit 1
|