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 db121f4
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 @@ -387,7 +387,7 @@ def build_command(
# Exit if the entry point is missing
# The _v2-entry-point script and container framework tools are included in
# the same image, so this can happen if the image failed to download
if not entry_point.is_file():
if env.get("UMU_NO_PROTON") != "1" and not entry_point.is_file():
err: str = (
f"_v2-entry-point (umu) cannot be found in '{local}'\n"
"Runtime Platform missing or download incomplete"
Expand Down

0 comments on commit db121f4

Please sign in to comment.