Skip to content
Snippets Groups Projects
Commit aa2a5edb authored by Sergiu Dumitriu's avatar Sergiu Dumitriu
Browse files

XWIKI-10650: Having a XWIKI_OPTS environment variable defined breaks the...

XWIKI-10650: Having a XWIKI_OPTS environment variable defined breaks the start_xwiki_debug.sh script
Fixed.
parent 06e27890
No related branches found
No related tags found
No related merge requests found
......@@ -48,8 +48,9 @@ JETTY_HOME=jetty
# If no XWIKI_OPTS env variable has been defined use default values.
if [ -z "$XWIKI_OPTS" ] ; then
XWIKI_OPTS="-Xmx512m -XX:MaxPermSize=196m -Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=5005"
XWIKI_OPTS="-Xmx512m -XX:MaxPermSize=196m"
fi
XWIKI_OPTS="$XWIKI_OPTS -Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=5005"
# The port on which to start Jetty can be defined in an enviroment variable called JETTY_PORT
if [ -z "$JETTY_PORT" ]; then
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment