From 6c0fc7f1954b555347192dee692615ced4f41ecb Mon Sep 17 00:00:00 2001 From: Stephane Nicoll Date: Thu, 29 Oct 2020 09:32:50 +0100 Subject: [PATCH] Workaround broken function in concourse scripts See spring-io/concourse-java-scripts#11 --- ci/scripts/stage.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/scripts/stage.sh b/ci/scripts/stage.sh index 5089c5bf7fc..2ae8a51f570 100755 --- a/ci/scripts/stage.sh +++ b/ci/scripts/stage.sh @@ -50,7 +50,7 @@ run_maven -f spring-boot-tests/spring-boot-deployment-tests/pom.xml clean instal git reset --hard HEAD^ > /dev/null if [[ $nextVersion != $snapshotVersion ]]; then echo "Setting next development version (v$nextVersion)" - set_revision_to_pom "$nextVersion" + set_revision "$nextVersion" git add pom.xml > /dev/null git commit -m"Next development version (v$nextVersion)" > /dev/null fi;