Skip to content

Commit

Permalink
Merge pull request #1203 from oyarzun/app-conf
Browse files Browse the repository at this point in the history
[NETBEANS-2361] Fix app.conf and launcher on macOS after changes in #573
  • Loading branch information
sdedic committed May 28, 2019
2 parents 1a7cc65 + e124ee6 commit a01e4c2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion harness/apisupport.harness/release/etc/app.conf
Expand Up @@ -54,7 +54,7 @@
#

default_userdir="${DEFAULT_USERDIR_ROOT}/dev"
default_cachedir=""${DEFAULT_CACHEDIR_ROOT}/dev"
default_cachedir="${DEFAULT_CACHEDIR_ROOT}/dev"

# options used by the launcher by default, can be overridden by explicit
# command line switches
Expand Down
6 changes: 5 additions & 1 deletion harness/apisupport.harness/release/launchers/app.sh
Expand Up @@ -57,7 +57,11 @@ args=""

case "`uname`" in
Darwin*)
userdir="${default_mac_userdir}"
if [ ! -z "$default_mac_userdir" ]; then
userdir="${default_mac_userdir}"
else
userdir="${default_userdir}"
fi
;;
*)
userdir="${default_userdir}"
Expand Down

0 comments on commit a01e4c2

Please sign in to comment.