Go is transitioning from the old '// +build' form to '//go:build', this removes all uses of the old form, adding the new one where needed. See https://go.googlesource.com/proposal/+/master/design/draft-gobuild.md
7 lines
138 B
Go
7 lines
138 B
Go
//go:build darwin
|
|
|
|
package crypt
|
|
|
|
func crypt(pass, salt string) (string, error) {
|
|
panic("You must not run osbuild-composer on macOS!")
|
|
}
|