don't try to update when running from source

This commit is contained in:
AAGaming
2024-08-03 14:03:56 -04:00
parent 3e50ce65a7
commit dcfaf11696
2 changed files with 4 additions and 1 deletions
+1 -1
View File
@@ -96,7 +96,7 @@ class Updater:
"current": self.localVer,
"remote": self.remoteVer,
"all": self.allRemoteVers,
"updatable": self.localVer != "unknown"
"updatable": self.localVer != "unknown" and self.localVer != "dev"
}
async def check_for_updates(self):