mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
[ui] UNC-friendly "is absolute path" test in run configuration's working directory detection (IDEA-235725)
GitOrigin-RevId: a3fc2623db413548c302fd98cedee0b88d4e6513
This commit is contained in:
committed by
intellij-monorepo-bot
parent
e881d0a3d3
commit
1249c0fa18
+2
-1
@@ -145,7 +145,8 @@ public class ProgramParametersConfigurator {
|
||||
}
|
||||
}
|
||||
workingDirectory = expandPathAndMacros(workingDirectory, module, project);
|
||||
if (!FileUtil.isAbsolutePlatformIndependent(workingDirectory) && defaultWorkingDir != null) {
|
||||
|
||||
if (!com.intellij.openapi.util.io.PathUtil.isAbsolute(workingDirectory) && defaultWorkingDir != null) {
|
||||
if (PathMacroUtil.DEPRECATED_MODULE_DIR.equals(workingDirectory)) {
|
||||
return defaultWorkingDir;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user