From db6d6ec2c5a87c94e2a735d48edaf3498b693751 Mon Sep 17 00:00:00 2001 From: John Blum Date: Thu, 8 Apr 2021 22:48:39 -0700 Subject: [PATCH] Fix syntax error in --no-build-cache option to the gradlew command in the ci/deployArtifact.sh Bash shell script. --- ci/deployArtifacts.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/deployArtifacts.sh b/ci/deployArtifacts.sh index e2843b40..122d3e47 100755 --- a/ci/deployArtifacts.sh +++ b/ci/deployArtifacts.sh @@ -10,7 +10,7 @@ echo "Deploying artifacts on host [$HOSTNAME]" chown -R 1001:1001 . GRADLE_OPTS="-Duser.name=jenkins -Djava.io.tmpdir=/tmp -Dgradle.user.home=/tmp/geode/artifacts-gradle-cache" \ - ./gradlew deployArtifacts finalizeDeployArtifacts --no-build-cache- --no-configuration-cache --no-daemon --stacktrace \ + ./gradlew deployArtifacts finalizeDeployArtifacts --no-build-cache --no-configuration-cache --no-daemon --stacktrace \ -PartifactoryUsername=$ARTIFACTORY_USERNAME \ -PartifactoryPassword=$ARTIFACTORY_PASSWORD \ -PossrhUsername=$OSSRH_USERNAME \