mirror of
https://github.com/micromdm/micromdm/
synced 2026-08-13 05:45:41 +08:00
16 lines
384 B
Go
16 lines
384 B
Go
// +build !darwin
|
|
|
|
package main
|
|
|
|
import "fmt"
|
|
|
|
func signPackage(path, outpath, developerID string) error {
|
|
fmt.Println("[WARNING] package signing only implemented on macOS")
|
|
return nil
|
|
}
|
|
|
|
func checkSignature(pkgpath string) (bool, error) {
|
|
fmt.Println("[WARNING] package signing only implemented on macOS. An unsigned macOS package will not install with MDM.")
|
|
return true, nil
|
|
}
|