diff --git a/src/ci/shared.sh b/src/ci/shared.sh index 1e667fca587..323d53f2bec 100644 --- a/src/ci/shared.sh +++ b/src/ci/shared.sh @@ -35,6 +35,8 @@ function isOSX { function getCIBranch { if [ "$TRAVIS" = "true" ]; then echo "$TRAVIS_BRANCH" + elif [ "$APPVEYOR" = "True" ]; then + echo "$APPVEYOR_REPO_BRANCH" else echo "$BUILD_SOURCEBRANCHNAME" fi;