diff --git a/scripts/ci/update_downstream.sh b/scripts/ci/update_downstream.sh index 53c9cac26a..a6a761bdec 100644 --- a/scripts/ci/update_downstream.sh +++ b/scripts/ci/update_downstream.sh @@ -35,10 +35,10 @@ git add pom.xml if [[ "${COMMIT_MESSAGE}" =~ \[force[^\]]*\] ]]; then FORCE_TOKEN=$(echo "${COMMIT_MESSAGE}" | sed "s|^.*\(\[force[^]]*\]\).*$|\1|g") - git commit --allow-empty -m "${FORCE_TOKEN} Update upstream version to ${VERSION}" + git commit --allow-empty -m "${FORCE_TOKEN} Update community-repo version to ${VERSION}" git push elif git status --untracked-files=no --porcelain | grep -q '^' ; then - git commit -m "Update upstream version to ${VERSION}" + git commit -m "Update community-repo version to ${VERSION}" git push else echo "Dependencies are already up to date."