Skip to content

Commit

Permalink
docs: make pgjdbc's javadocs to inherit base Java documentation
Browse files Browse the repository at this point in the history
By default, the step of "unzipping jdk/src.zip" is skipped to speedup Travis CI,
however it was not properly activated in travis_release.sh.
  • Loading branch information
vlsi committed Jan 17, 2018
1 parent 17cc5d2 commit eb406dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .travis/travis_release.sh
Expand Up @@ -94,7 +94,7 @@ git push git@github.com:$TRAVIS_REPO_SLUG$JRE.git :$RELEASE_TAG || true

# -Darguments here is for maven-release-plugin
MVN_SETTINGS=$(pwd)/settings.xml
mvn -B --settings settings.xml -Darguments="--settings '${MVN_SETTINGS}'" -Dskip.unzip-jdk-src=false release:prepare release:perform
mvn -B --settings settings.xml -Darguments="--settings '${MVN_SETTINGS}' -Dskip.unzip-jdk-src=false" -Dskip.unzip-jdk-src=false release:prepare release:perform

# Point "master" branch to "next development snapshot commit"
git push git@github.com:$TRAVIS_REPO_SLUG$JRE.git "HEAD:$ORIGINAL_BRANCH"
Expand Down

0 comments on commit eb406dc

Please sign in to comment.