| 1 | //go:build !darwin |
| 2 | |
| 3 | package main |
| 4 | |
| 5 | import ( |
| 6 | "fmt" |
| 7 | "runtime" |
| 8 | ) |
| 9 | |
| 10 | func applyMac(string, string) error { |
| 11 | return fmt.Errorf("self-update unsupported on %s", runtime.GOOS) |
| 12 | } |
| 13 | |
| 14 | func maybeRunMacUpdateHandoff([]string) (bool, int) { |
| 15 | return false, 0 |
| 16 | } |
| 17 |