Updater: Disable updater for tags that don't look like official releases

This commit is contained in:
TellowKrinkle 2022-12-11 04:22:19 -06:00 committed by refractionpcsx2
parent 8925da94e1
commit 636e0de5aa
1 changed files with 1 additions and 1 deletions

View File

@ -48,7 +48,7 @@
// Logic to detect whether we can use the auto updater.
// We use tagged commit, because this gets set on nightly builds.
#if (defined(_WIN32) || defined(__linux__) || defined(__APPLE__)) && (defined(GIT_TAGGED_COMMIT) && GIT_TAGGED_COMMIT)
#if (defined(_WIN32) || defined(__linux__) || defined(__APPLE__)) && defined(GIT_TAG_LO)
#define AUTO_UPDATER_SUPPORTED 1