Skip to content

Commit

Permalink
umu_run: skip proton file check
Browse files Browse the repository at this point in the history
  • Loading branch information
R1kaB3rN committed Sep 12, 2024
1 parent 578ef8d commit b0d6c92
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion umu/umu_run.py
Original file line number Diff line number Diff line change
Expand Up @@ -380,7 +380,7 @@ def build_command(
proton: Path = Path(env["PROTONPATH"], "proton")
entry_point: Path = local.joinpath("umu")

if not proton.is_file():
if env.get("UMU_NO_PROTON") != "1" and not proton.is_file():
err: str = "The following file was not found in PROTONPATH: proton"
raise FileNotFoundError(err)

Expand Down

0 comments on commit b0d6c92

Please sign in to comment.