From 8ef2decd6c4b7c51ec23661806befc39d3bae16d 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 0686f2b4..4ac0d723 100755 --- a/steamtinkerlaunch +++ b/steamtinkerlaunch @@ -26576,7 +26576,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 }