mirror of
https://github.com/moby/moby.git
synced 2026-07-17 21:11:19 +00:00
10 lines
246 B
Go
10 lines
246 B
Go
// +build !windows
|
|
|
|
package instructions // import "github.com/docker/docker/builder/dockerfile/instructions"
|
|
|
|
import "fmt"
|
|
|
|
func errNotJSON(command, _ string) error {
|
|
return fmt.Errorf("%s requires the arguments to be in JSON form", command)
|
|
}
|