Use system property rather than --quiet to suppress welcome message
Closes gh-19630
This commit is contained in:
parent
bda3cedf10
commit
518e14a7bf
|
@ -1,4 +1,4 @@
|
|||
SET "JAVA_HOME=C:\opt\jdk-8"
|
||||
SET PATH=%PATH%;C:\Program Files\Git\usr\bin
|
||||
cd git-repo
|
||||
.\gradlew --no-daemon --max-workers=4 --quiet build
|
||||
.\gradlew -Dorg.gradle.internal.launcher.welcomeMessageEnabled=false --no-daemon --max-workers=4 build
|
||||
|
|
|
@ -5,5 +5,5 @@ source $(dirname $0)/common.sh
|
|||
repository=$(pwd)/distribution-repository
|
||||
|
||||
pushd git-repo > /dev/null
|
||||
./gradlew --no-daemon --max-workers=4 --quiet -PdeploymentRepository=${repository} build publishAllPublicationsToDeploymentRepository
|
||||
./gradlew -Dorg.gradle.internal.launcher.welcomeMessageEnabled=false --no-daemon --max-workers=4 -PdeploymentRepository=${repository} build publishAllPublicationsToDeploymentRepository
|
||||
popd > /dev/null
|
||||
|
|
Loading…
Reference in New Issue