feat: update updater channel

This commit is contained in:
DIYgod 2025-02-13 18:08:40 +08:00
parent 1b71f2cd0f
commit 614c9b70b5
No known key found for this signature in database
1 changed files with 1 additions and 3 deletions

View File

@ -9,9 +9,7 @@ export const isNightlyBuild = appVersion.includes("nightly")
export const channel: "development" | "beta" | "alpha" | "stable" | "nightly" = isDev
? "development"
: isNightlyBuild
? "nightly"
: "beta"
: "stable"
const { platform } = process
export const isMacOS = platform === "darwin"