File.separatorChar != '/'

This commit is contained in:
Reinhard Pointner 2018-07-23 23:06:32 +07:00
parent 3d56571644
commit 69282fe524
1 changed files with 1 additions and 1 deletions

View File

@ -85,7 +85,7 @@ public final class Settings {
}
public static boolean isWindowsApp() {
return isApplicationDeployment("appx", "msi", "zip");
return File.separatorChar != '/' || isApplicationDeployment("appx", "msi", "zip");
}
public static boolean isUbuntuApp() {