From f666c8f8d0a899c7b146a5d6689de51daf6dcc16 Mon Sep 17 00:00:00 2001 From: R1kaB3rN <100738684+R1kaB3rN@users.noreply.github.com> Date: Sat, 17 Feb 2024 12:29:15 -0800 Subject: [PATCH] ulwgl_run: change error msg - Prefer a shorter message when download fails or Proton cannot be found, and reference ULWGL-Proton Github repository instead of GE-Proton --- ulwgl_run.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ulwgl_run.py b/ulwgl_run.py index 984004c..41a2532 100755 --- a/ulwgl_run.py +++ b/ulwgl_run.py @@ -127,7 +127,7 @@ def check_env( # If download fails/doesn't exist in the system, raise an error if not os.environ["PROTONPATH"]: - err: str = "GE-Proton could not be found in cache or compatibilitytools.d\nGE-Proton also failed to be downloaded\nPlease set a Proton directory or visit https://github.com/GloriousEggroll/proton-ge-custom/releases" + err: str = "Download failed.\nProton could not be found in cache or compatibilitytools.d\nPlease set $PROTONPATH or visit https://github.com/Open-Wine-Components/ULWGL-Proton/releases" raise FileNotFoundError(err) return env