]
James Perkins closed WFLY-997.
------------------------------
Resolution: Out of Date
Should be fixed upstream
standalone.sh / domain.sh does not support overriding
jboss.server.base.dir, log and config dir in CYGWIN
---------------------------------------------------------------------------------------------------------
Key: WFLY-997
URL:
https://issues.jboss.org/browse/WFLY-997
Project: WildFly
Issue Type: Bug
Components: Scripts
Reporter: Tom Fonteyne
Assignee: James Perkins
Priority: Minor
There is a check on linux, so a cygwin system will not execute this block:
if $linux; then
# consolidate the server and command line opts
CONSOLIDATED_OPTS="$JAVA_OPTS $SERVER_OPTS"
# process the standalone options
for var in $CONSOLIDATED_OPTS
do
case $var in
-Djboss.server.base.dir=*)
JBOSS_BASE_DIR=`readlink -m ${var#*=}`
...