Ignore updates if test build.

This commit is contained in:
Max Goedjen 2025-08-24 13:27:21 -07:00
parent adcb494483
commit a5ab985fd0
No known key found for this signature in database

View File

@ -49,6 +49,7 @@ class AppDelegate: NSObject, NSApplicationDelegate {
updater.update
} onChange: { [updater, notifier] in
Task {
guard !updater.testBuild else { return }
await notifier.notify(update: updater.update!) { release in
await updater.ignore(release: release)
}