-
Type:
Bug
-
Resolution: Won't Fix
-
Priority:
P3
-
Affects Version/s: 9
-
Component/s: deploy
Investigate this code. Windows XP does not support symlinks but Windows 7 and above does.
IOUtils.java
public static boolean isNotSymbolicLink(File file) {
//no symlinks on windows
if (Platform.getPlatform() == Platform.WINDOWS) {
return true;
}
IOUtils.java
public static boolean isNotSymbolicLink(File file) {
//no symlinks on windows
if (Platform.getPlatform() == Platform.WINDOWS) {
return true;
}