| 1 | //go:build !windows |
| 2 | |
| 3 | package desktopinstance |
| 4 | |
| 5 | func PrepareInstall(root, home string, interactive bool) (func(), error) { return func() {}, nil } |
| 6 | func LaunchAndVerify(root, home string, interactive bool, start func() error, args ...string) error { |
| 7 | return start() |
| 8 | } |
| 9 | func Notify(err error) {} |
| 10 | func CheckInstallVacant(root, home string) error { return nil } |
| 11 | func AttemptLog(home, action, root string) func(error) { |
| 12 | return func(error) {} |
| 13 | } |
| 14 |