1
0
Fork 1
mirror of https://github.com/thatmattlove/hyperglass.git synced 2026-01-17 08:48:05 +00:00
thatmattlove-hyperglass/tests/ci_git_prep.sh
2019-06-18 16:05:52 -07:00

26 lines
488 B
Bash
Executable file

#!/bin/sh
echo "Travis Pull Request State: $TRAVIS_PULL_REQUEST"
echo "Travis Branch: $TRAVIS_BRANCH"
git_setup() {
git config user.email "travis@travis-ci.org"
git config user.name "Travis CI"
}
detect_branch() {
if [ "$TRAVIS_PULL_REQUEST" = "false" ]; then
echo $TRAVIS_BRANCH
else
echo $TRAVIS_PULL_REQUEST_BRANCH
fi
}
CURRENT_BRANCH=$(detect_branch)
echo "Detected Branch: $CURRENT_BRANCH"
git_setup
git checkout $CURRENT_BRANCH
export $CURRENT_BRANCH
exit 0