Skip to content

Commit 6ef33ef

Browse files
committed
Updated travis-build.sh
Fix error in if cond
1 parent 942e420 commit 6ef33ef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

travis-build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ else
1313
./gradlew --no-daemon --refresh-dependencies check || EXIT_STATUS=$?
1414
if [[ $EXIT_STATUS -eq 0 && $TRAVIS_PULL_REQUEST == 'false' ]]; then
1515
echo "Travis Branch $TRAVIS_BRANCH"
16-
if ([[ -n $TRAVIS_TAG ]] || [[ $TRAVIS_BRANCH =~ ^master|[7]\..\.x$ ]] ]] && [[ "${TRAVIS_JDK_VERSION}" != "openjdk11" ]]); then
16+
if ([[ -n $TRAVIS_TAG ]] || [[ $TRAVIS_BRANCH =~ ^master|[7]\..\.x$ ]] && [[ "${TRAVIS_JDK_VERSION}" != "openjdk11" ]]); then
1717
./travis-publish.sh || EXIT_STATUS=$?
1818
fi
1919
fi

0 commit comments

Comments
 (0)