Skip to content

Commit

Permalink
Remove quoting of Maven opts in bin/test (#239)
Browse files Browse the repository at this point in the history
  • Loading branch information
Malax authored Feb 27, 2025
1 parent c58815c commit 0257c63
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions bin/test
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@ cd "${BUILD_DIR}"
mvn_settings_opt="$(_mvn_settings_opt "${BUILD_DIR}" "${BUILD_DIR}")"

if has_maven_wrapper "${BUILD_DIR}"; then
./mvnw -B "${mvn_settings_opt}" "${MAVEN_HEROKU_CI_GOAL:-test}"
# shellcheck disable=SC2086
./mvnw -B ${mvn_settings_opt} "${MAVEN_HEROKU_CI_GOAL:-test}"
else
mvn -B "${mvn_settings_opt}" "${MAVEN_HEROKU_CI_GOAL:-test}"
# shellcheck disable=SC2086
mvn -B ${mvn_settings_opt} "${MAVEN_HEROKU_CI_GOAL:-test}"
fi

0 comments on commit 0257c63

Please sign in to comment.