diff options
| -rw-r--r-- | clientupdate/clientupdate.go | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/clientupdate/clientupdate.go b/clientupdate/clientupdate.go index 210e9a99e..9e36cea21 100644 --- a/clientupdate/clientupdate.go +++ b/clientupdate/clientupdate.go @@ -588,10 +588,7 @@ func parseAlpinePackageVersion(out []byte) (string, error) { } func (up *updater) updateMacSys() error { - // This is actually NOTREACHED, because code in Swift intercepted the - // `update` command before ever calling into this point. It invokes the - // Sparkle update GUI. - return nil + return errors.New("NOTREACHED: On MacSys builds, `tailscale update` is handled in Swift to launch the GUI updater") } func (up *updater) updateMacAppStore() error { |
