Skip to content

Commit

Permalink
Fixed wrong variable name being used
Browse files Browse the repository at this point in the history
  • Loading branch information
arcivanov committed Sep 18, 2014
1 parent 8b650b9 commit f34e21f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build/src/main/resources/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 f34e21f

Please sign in to comment.