Skip to content

Commit

Permalink
Merge pull request #183 from ServiceMesh/WFLY-3649
Browse files Browse the repository at this point in the history
WFLY-3649: On Darwin domain.sh JBOSS_BASE_DIR isn't resolved properly
  • Loading branch information
bstansberry committed Sep 19, 2014
2 parents c6fd981 + 1685f62 commit 271dc24
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions core-feature-pack/src/main/resources/content/bin/domain.sh
Expand Up @@ -142,13 +142,13 @@ if $darwin; then
do
case $var in
-Djboss.domain.base.dir=*)
JBOSS_BASE_DIR=`cd ${p#*=} ; pwd -P`
JBOSS_BASE_DIR=`cd ${var#*=} ; pwd -P`
;;
-Djboss.domain.log.dir=*)
JBOSS_LOG_DIR=`cd ${p#*=} ; pwd -P`
JBOSS_LOG_DIR=`cd ${var#*=} ; pwd -P`
;;
-Djboss.domain.config.dir=*)
JBOSS_CONFIG_DIR=`cd ${p#*=} ; pwd -P`
JBOSS_CONFIG_DIR=`cd ${var#*=} ; pwd -P`
;;
esac
done
Expand Down

0 comments on commit 271dc24

Please sign in to comment.