Add custom executable paths on Windows

This commit is contained in:
grossmj
2023-12-05 21:24:40 +10:00
parent 7f05a06766
commit 08ee40548f
3 changed files with 9 additions and 0 deletions

View File

@ -656,6 +656,9 @@ class BaseNode:
"""
path = self._manager.config.get_section_config("Server").get("ubridge_path", "ubridge")
if sys.platform.startswith("win") and hasattr(sys, "frozen"):
ubridge_dir = os.path.normpath(os.path.join(os.path.dirname(os.path.abspath(sys.executable)), "ubridge"))
os.environ["PATH"] = os.pathsep.join(ubridge_dir) + os.pathsep + os.environ.get("PATH", "")
path = shutil.which(path)
return path