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 d7805b3 commit 1685f62
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
Original file line number Diff line number Diff line change
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 1685f62

Please sign in to comment.