1
0
mirror of https://github.com/taigrr/go-selfupdate synced 2025-01-18 04:33:12 -08:00

Removed log.Fatal as we dont want to stop the application if the update fails

This commit is contained in:
Mark Sanborn 2013-11-15 10:45:45 -08:00
parent f906cb7b7d
commit 0bed6e537a

View File

@ -87,7 +87,7 @@ func (u *Updater) BackgroundRun() {
//}
// TODO(bgentry): logger isn't on Windows. Replace w/ proper error reports.
if err := u.update(); err != nil {
log.Fatal(err)
log.Println(err)
}
}
}