Check the HOME property (upper case, ignore different cases). BLD200408011800
authormentlicher@netbeans.org
Fri, 30 Jul 2004 15:08:48 +0000
changeset 4990d53d8a4729e1
parent 4989 7a22229fa670
child 4991 c33b482ccdb9
Check the HOME property (upper case, ignore different cases).
vcs.profiles.cvsprofiles/src/org/netbeans/modules/vcs/profiles/cvsprofiles/commands/passwd/CVSPasswd.java
     1.1 --- a/vcs.profiles.cvsprofiles/src/org/netbeans/modules/vcs/profiles/cvsprofiles/commands/passwd/CVSPasswd.java	Fri Jul 30 15:00:17 2004 +0000
     1.2 +++ b/vcs.profiles.cvsprofiles/src/org/netbeans/modules/vcs/profiles/cvsprofiles/commands/passwd/CVSPasswd.java	Fri Jul 30 15:08:48 2004 +0000
     1.3 @@ -118,7 +118,7 @@
     1.4       * @return the home directory
     1.5       */
     1.6      public String getHome() {
     1.7 -        String home = System.getProperty("env-home");
     1.8 +        String home = System.getProperty("Env-HOME");
     1.9          if (home == null && Utilities.isWindows()) {
    1.10              String homePath = System.getProperty("env-homepath");
    1.11              String homeDrive = System.getProperty("env-homedrive");