We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1e13163 commit b0a20a2Copy full SHA for b0a20a2
nb/ide.launcher/unix/netbeans
@@ -38,12 +38,18 @@ cd "$progdir"/..
38
basedir=`pwd`
39
cd "$old"
40
41
-case "`uname`" in
+case "`uname -s -m`" in
42
Darwin*)
43
# set default userdir and cachedir on Mac OS X
44
DEFAULT_USERDIR_ROOT="${HOME}/Library/Application Support/NetBeans"
45
DEFAULT_CACHEDIR_ROOT=${HOME}/Library/Caches/NetBeans
46
;;
47
+ CYGWIN*_64)
48
+ exec $progdir/netbeans64.exe $*
49
+ ;;
50
+ CYGWIN*)
51
+ exec $progdir/netbeans.exe $*
52
53
*)
54
# set default userdir and cachedir on unix systems
55
DEFAULT_USERDIR_ROOT=${HOME}/.netbeans
0 commit comments