|
|
@ -66,7 +66,12 @@ abstract class FS_POSIX extends FS { |
|
|
|
String w = readPipe(userHome(), //
|
|
|
|
String w = readPipe(userHome(), //
|
|
|
|
new String[] { "bash", "--login", "-c", "which git" }, //
|
|
|
|
new String[] { "bash", "--login", "-c", "which git" }, //
|
|
|
|
Charset.defaultCharset().name()); |
|
|
|
Charset.defaultCharset().name()); |
|
|
|
return new File(w).getParentFile().getParentFile(); |
|
|
|
if (w == null || w.length() == 0) |
|
|
|
|
|
|
|
return null; |
|
|
|
|
|
|
|
File parentFile = new File(w).getParentFile(); |
|
|
|
|
|
|
|
if (parentFile == null) |
|
|
|
|
|
|
|
return null; |
|
|
|
|
|
|
|
return parentFile.getParentFile(); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
return null; |
|
|
|
return null; |
|
|
|