Currently one would have to pass a `macos` flag explicitly to build on OSX, but if we replace `macos` with `darwin` this happens automatically. Signed-off-by: Tom Gundersen <teg@jklm.no>
7 lines
137 B
Go
7 lines
137 B
Go
// +build darwin
|
|
|
|
package crypt
|
|
|
|
func crypt(pass, salt string) (string, error) {
|
|
panic("You must not run osbuild-composer on macOS!")
|
|
}
|