316976 removed quotes of JAVA_OPTIONS in jetty.sh

git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@2021 7e9141cc-0065-0410-87d8-b60c137991c4
This commit is contained in:
Greg Wilkins 2010-06-17 00:53:35 +00:00
parent 6bbaa8feaf
commit 8bc63b4b1e
2 changed files with 3 additions and 2 deletions

View File

@ -6,6 +6,7 @@ jetty-7.1.5-SNAPSHOT
+ 316597 Removed null check and fixed name in Resource#hrefEncodeURI
+ 316970 jetty.sh fails to find JETTY_HOME in standard directories
+ 316973 jetty.sh claims java installation is invalid
+ 316976 removed quotes of JAVA_OPTIONS in jetty.sh
+ 317019 Date HTTP header not sent for HTTP/1.0 requests
+ JETTY-1237 Save local/remote address to be available after close

View File

@ -374,8 +374,8 @@ JETTY_START=$JETTY_HOME/start.jar
START_INI=$(dirname $JETTY_START)/start.ini
[ -r "$START_INI" ] || START_INI=""
RUN_ARGS=("${JAVA_OPTIONS[@]}" -jar "$JETTY_START" $JETTY_ARGS "${CONFIGS[@]}")
RUN_CMD=("$JAVA" "${RUN_ARGS[@]}")
RUN_ARGS=(${JAVA_OPTIONS[@]} -jar "$JETTY_START" $JETTY_ARGS "${CONFIGS[@]}")
RUN_CMD=("$JAVA" ${RUN_ARGS[@]})
#####################################################
# Comment these out after you're happy with what