mirror of
https://github.com/tcsenpai/UWINE.git
synced 2025-06-08 20:45:21 +00:00
parent
dd079fdac6
commit
e23ed300ee
@ -234,7 +234,7 @@ def build_command(
|
|||||||
"""Build the command to be executed."""
|
"""Build the command to be executed."""
|
||||||
paths: List[Path] = [
|
paths: List[Path] = [
|
||||||
Path(Path().home().as_posix() + "/.local/share/ULWGL/ULWGL"),
|
Path(Path().home().as_posix() + "/.local/share/ULWGL/ULWGL"),
|
||||||
Path(Path(__file__).cwd().as_posix() + "/ULWGL"),
|
Path(Path(__file__).parent.as_posix() + "/ULWGL"),
|
||||||
]
|
]
|
||||||
entry_point: str = ""
|
entry_point: str = ""
|
||||||
verb: str = env["PROTON_VERB"]
|
verb: str = env["PROTON_VERB"]
|
||||||
@ -248,7 +248,7 @@ def build_command(
|
|||||||
# Raise an error if the _v2-entry-point cannot be found
|
# Raise an error if the _v2-entry-point cannot be found
|
||||||
if not entry_point:
|
if not entry_point:
|
||||||
home: str = Path().home().as_posix()
|
home: str = Path().home().as_posix()
|
||||||
dir: str = Path(__file__).cwd().as_posix()
|
dir: str = Path(__file__).parent.as_posix()
|
||||||
msg: str = (
|
msg: str = (
|
||||||
f"Path to _v2-entry-point cannot be found in: {home}/.local/share or {dir}"
|
f"Path to _v2-entry-point cannot be found in: {home}/.local/share or {dir}"
|
||||||
)
|
)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user