remove exit

This commit is contained in:
rodicasutu
2020-07-06 17:47:24 +03:00
parent 962da26003
commit 9015cce59f

View File

@@ -2,10 +2,9 @@
echo "Branch name: ${TRAVIS_BRANCH}" echo "Branch name: ${TRAVIS_BRANCH}"
# If this is pull request # If this is pull request
if [[ "${TRAVIS_PULL_REQUEST}" != "false" ]]; if [ "${TRAVIS_PULL_REQUEST}" != "false" ];
then then
export MAVEN_PHASE="verify" export MAVEN_PHASE="verify"
exit 0
fi fi
if [ "${TRAVIS_BRANCH}" == "master" ]; if [ "${TRAVIS_BRANCH}" == "master" ];
@@ -17,3 +16,4 @@ then
else else
export MAVEN_PHASE="verify" export MAVEN_PHASE="verify"
fi fi
echo "Maven Phase: $MAVEN_PHASE"