fix: update check failure should not cause exit

This commit is contained in:
Haruue 2024-03-10 15:52:55 +08:00
parent 02baab148a
commit 9b7bca4d18
No known key found for this signature in database
GPG key ID: F6083B28CBCBC148

View file

@ -37,7 +37,7 @@ func runCheckUpdate(cmd *cobra.Command, args []string) {
checker := utils.NewServerUpdateChecker(appVersion, appPlatform, appArch, appType)
resp, err := checker.Check()
if err != nil {
logger.Fatal("failed to check for updates", zap.Error(err))
logger.Error("failed to check for updates", zap.Error(err))
}
if resp.HasUpdate {
logger.Info("update available",