From 5184ea0ab95a05e1f82102b778d01a8a95ea34a9 Mon Sep 17 00:00:00 2001 From: "zacharias@4zellen.se" Date: Thu, 12 Feb 2026 22:22:28 +0100 Subject: [PATCH] Fixed incorect variable setting on line 34. added support for the magic number when starting proton --- install.sh | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/install.sh b/install.sh index adf39f3..fda238c 100755 --- a/install.sh +++ b/install.sh @@ -31,7 +31,7 @@ elif [[ -d "$STEAM_CUTOM_PROTON_PATH" ]] then subdir="${subdir%/}" if [[ -x "$subdir/proton" ]] then ## We found a proton! we will asume this is a good and working one :) - PROTON_PATH="$subdir/proton" + PROTON_PATH="$subdir" found=1 break fi @@ -171,4 +171,8 @@ echo "" sleep 1 echo "Starting proton in 5s, we might lose controll, if no application starts then we might have an issue, I trust you proton!..." sleep 5 -"$PROTON_PATH/proton" "$TMP_DIR/EAappInstaller.exe" \ No newline at end of file +if [[ "$PROTON_PATH" == "PATH" ]] then + proton-ge "$TMP_DIR/EAappInstaller.exe" +else + "$PROTON_PATH/proton" "$TMP_DIR/EAappInstaller.exe" +fi \ No newline at end of file