diff --git a/docs/src/main/asciidoc/ghpages.sh b/docs/src/main/asciidoc/ghpages.sh index 3972e1fd00..dccbd654d3 100755 --- a/docs/src/main/asciidoc/ghpages.sh +++ b/docs/src/main/asciidoc/ghpages.sh @@ -60,14 +60,14 @@ function switch_to_tag() { # Build the docs if switch is on function build_docs_if_applicable() { if [[ "${BUILD}" == "yes" ]] ; then - ./mvnw clean install -P docs -pl docs -DskipTests -q + ./mvnw clean install -P docs -pl docs -DskipTests fi } # Get the name of the `docs.main` property # Get allowed branches - assumes that a `docs` module is available under `docs` profile function retrieve_doc_properties() { - MAIN_ADOC_VALUE=$("${MAVEN_PATH}"mvn -q \ + MAIN_ADOC_VALUE=$("${MAVEN_PATH}"mvn \ -Dexec.executable="echo" \ -Dexec.args='${docs.main}' \ --non-recursive \ @@ -76,7 +76,7 @@ function retrieve_doc_properties() { ALLOW_PROPERTY=${ALLOW_PROPERTY:-"docs.allowed.branches"} - ALLOWED_BRANCHES_VALUE=$("${MAVEN_PATH}"mvn -q \ + ALLOWED_BRANCHES_VALUE=$("${MAVEN_PATH}"mvn \ -Dexec.executable="echo" \ -Dexec.args="\${${ALLOW_PROPERTY}}" \ org.codehaus.mojo:exec-maven-plugin:3.1.0:exec \