errors_unix.go 246 B

123456789
  1. // +build !windows
  2. package instructions // import "github.com/docker/docker/builder/dockerfile/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. }