errors_unix.go 177 B

123456789
  1. // +build !windows
  2. package instructions
  3. import "fmt"
  4. func errNotJSON(command, _ string) error {
  5. return fmt.Errorf("%s requires the arguments to be in JSON form", command)
  6. }