File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed
Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -33,8 +33,8 @@ version=$1
3333
3434cd " ${SOURCE_TOP_DIR} "
3535
36- git switch -c bump-version-${version}
37- mvn versions:set -DnewVersion=${version} -DprocessAllModules -DgenerateBackupPoms=false
36+ git switch -c " bump-version-${version} "
37+ mvn versions:set " -DnewVersion=${version} " -DprocessAllModules -DgenerateBackupPoms=false
3838case " ${version} " in
3939* -SNAPSHOT)
4040 tag=main
@@ -43,8 +43,8 @@ case "${version}" in
4343 tag=v${version}
4444 ;;
4545esac
46- mvn versions:set-scm-tag -DnewTag=${tag} -DgenerateBackupPoms=false -pl :arrow-java-root
47- mvn versions:set-scm-tag -DnewTag=${tag} -DgenerateBackupPoms=false -pl :arrow-bom
46+ mvn versions:set-scm-tag " -DnewTag=${tag} " -DgenerateBackupPoms=false -pl :arrow-java-root
47+ mvn versions:set-scm-tag " -DnewTag=${tag} " -DgenerateBackupPoms=false -pl :arrow-bom
4848git add " pom.xml"
4949git add " **/pom.xml"
5050git commit -m " MINOR: Bump version to ${version} "
Original file line number Diff line number Diff line change @@ -124,7 +124,7 @@ ensure_source_directory() {
124124}
125125
126126test_source_distribution () {
127- if [ ${VERIFY_SOURCE} -le 0 ]; then
127+ if [ " ${VERIFY_SOURCE} " -le 0 ]; then
128128 return 0
129129 fi
130130
@@ -135,7 +135,7 @@ test_source_distribution() {
135135}
136136
137137test_binary_distribution () {
138- if [ ${VERIFY_SOURCE} -le 0 ]; then
138+ if [ " ${VERIFY_BINARY} " -le 0 ]; then
139139 return 0
140140 fi
141141
You can’t perform that action at this time.
0 commit comments