diff options
| author | Hannes Rosenögger <123haynes@gmail.com> | 2019-03-16 15:51:00 +0100 |
|---|---|---|
| committer | Hannes Rosenögger <123haynes@gmail.com> | 2019-03-16 15:51:00 +0100 |
| commit | b84674e6115ade54ba4db79c02a316e1c322fb66 (patch) | |
| tree | 72ae4a2389966005bf144c6ccece3f7cab765b3c | |
| parent | 5a2172e9693e7a0cbdb17c636ec8acb5faee8261 (diff) | |
make sure users can provide more than one MAVEN_CLI_OPT.
Before maven would recognize all provided options as one option
and fail if you used for example:
MAVEN_CLI_OPTS="--batch-mode --errors --fail-at-end --show-version -DinstallAtEnd=true -DdeployAtEnd=true -DskipTests"
| -rwxr-xr-x | run.sh | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -153,7 +153,7 @@ case "$COMMAND" in if test -f pom.xml ; then # Install Java Maven dependencies. - mvn install "${MAVEN_CLI_OPTS:--DskipTests}" + mvn install ${MAVEN_CLI_OPTS:--DskipTests} fi if test -f build.gradle ; then |
