13 lines
162 B
Go
13 lines
162 B
Go
//go:build !darwin
|
|
|
|
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"runtime"
|
|
)
|
|
|
|
func applyMac(string) error {
|
|
return fmt.Errorf("self-update unsupported on %s", runtime.GOOS)
|
|
}
|