1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
//go:build dragonfly || freebsd || openbsd || netbsd || solaris
package internal
import (
"fmt"
"runtime"
)
var (
FirefoxProfiles = []string{}
CertutilInstallHelp = ""
NSSBrowsers = ""
)
func (m *mkcert) installPlatform() bool {
panic(fmt.Sprintf("installing root on %s is currently not supported", runtime.GOOS))
return false
}
func (m *mkcert) uninstallPlatform() bool {
panic(fmt.Sprintf("uninstalling root on %s is currently not supported", runtime.GOOS))
return false
}
|