From ac1e2f4e6fd2a3b00575cd71d5c0bcec64200622 Mon Sep 17 00:00:00 2001 From: AtomHare <29772841+AtomHare@users.noreply.github.com> Date: Sun, 23 Jun 2024 20:27:44 +0200 Subject: [PATCH] Fix updateSteamDeckLastVers Co-authored-by: Eamonn Rea --- steamtinkerlaunch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/steamtinkerlaunch b/steamtinkerlaunch index c2124bf0..7787c7c1 100755 --- a/steamtinkerlaunch +++ b/steamtinkerlaunch @@ -26725,7 +26725,7 @@ function checkSteamDeckLastVers { function updateSteamDeckLastVers { # This function updates the 'lastvers' file after a dependency update if there was a version change - if [ "$( checkSteamDeckSTLUpdated )" -eq 1 ]; then + if checkSteamDeckSTLUpdated; then echo "$PROGVERS" > "$STLSTEAMDECKLASTVERS" fi }