github.com/sams1990/dockerrepo@v17.12.1-ce-rc2+incompatible/builder/dockerfile/instructions/errors_unix.go (about)

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