Skip to content

Commit

Permalink
releasing: prevent globbing and word splitting of VERSION
Browse files Browse the repository at this point in the history
  • Loading branch information
jrha committed Nov 6, 2024
1 parent 3d4511b commit ff49f77
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/releasing/releaser.sh
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ if gpg-agent; then
for r in $REPOS_MVN; do
echo_info "---------------- Releasing $r ----------------"
cd $r
mvn -e -q -DautoVersionSubmodules=true -Dgpg.useagent=true -Darguments=-Dgpg.useagent=true -B -DreleaseVersion=$VERSION clean release:prepare
mvn -e -q -DautoVersionSubmodules=true -Dgpg.useagent=true -Darguments=-Dgpg.useagent=true -B -DreleaseVersion="$VERSION" clean release:prepare
if [[ $? -gt 0 ]]; then
echo_error "RELEASE FAILURE"
exit 1
Expand Down

0 comments on commit ff49f77

Please sign in to comment.