From d749cfec4cdb59cf2d68196130f6004e196bc8a1 Mon Sep 17 00:00:00 2001 From: R1kaB3rN <100738684+R1kaB3rN@users.noreply.github.com> Date: Thu, 28 Mar 2024 14:10:44 -0700 Subject: [PATCH] umu_run: update error message for _v2-entry-point - In this case, the launcher only checks ~/.local/share/umu and never the parent of the root directory --- umu/umu_run.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/umu/umu_run.py b/umu/umu_run.py index 43d67341..b811d881 100755 --- a/umu/umu_run.py +++ b/umu/umu_run.py @@ -228,11 +228,9 @@ def build_command( # Raise an error if the _v2-entry-point cannot be found if not local.joinpath("umu").is_file(): - home: str = Path.home().as_posix() - dir: str = Path(__file__).parent.as_posix() msg: str = ( "Path to _v2-entry-point cannot be found in: " - f"{home}/.local/share or {dir}\n" + f"{local}\n" "Please install a Steam Runtime platform" ) raise FileNotFoundError(msg)