This commit is contained in:
Flowseal
2026-06-30 19:11:01 +03:00
parent 4f9edf3072
commit 050dcbce44
2 changed files with 8 additions and 2 deletions
+4 -1
View File
@@ -41,7 +41,10 @@ def _exe_dir() -> Optional[Path]:
return None
if not base:
return None
p = Path(base).resolve()
try:
p = Path(base).resolve(strict=False)
except OSError:
p = Path(os.path.realpath(base))
return p.parent if p.is_file() else p