summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHannes Rosenögger <123haynes@gmail.com>2019-03-16 15:51:00 +0100
committerHannes Rosenögger <123haynes@gmail.com>2019-03-16 15:51:00 +0100
commitb84674e6115ade54ba4db79c02a316e1c322fb66 (patch)
tree72ae4a2389966005bf144c6ccece3f7cab765b3c
parent5a2172e9693e7a0cbdb17c636ec8acb5faee8261 (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-xrun.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/run.sh b/run.sh
index 822b85c..717c368 100755
--- a/run.sh
+++ b/run.sh
@@ -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