Skip to content

Commit

Permalink
Merge pull request #409 from thijsvanloef/fix-game-not-target
Browse files Browse the repository at this point in the history
Fix always showing: "Game not at target version"
  • Loading branch information
thijsvanloef authored Feb 19, 2024
2 parents 2999762 + c633743 commit e72c43d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/helper_install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ UpdateRequired() {
return 0
fi

if [ "$CURRENT_MANIFEST" != "${TARGET_MANIFEST_ID}" ]; then
if [ -n "${TARGET_MANIFEST_ID}" ] && [ "$CURRENT_MANIFEST" != "${TARGET_MANIFEST_ID}" ]; then
LogInfo "Game not at target version. Target Version: ${TARGET_MANIFEST_ID}"
return 0
fi
Expand Down

0 comments on commit e72c43d

Please sign in to comment.