mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
669c067798
This is a work base to introduce more features like build time dockerfile optimisations, dependency analysis and parallel build, as well as a first step to go from a dispatch-inline process to a frontend+backend process. Signed-off-by: Simon Ferquel <simon.ferquel@docker.com>
9 lines
177 B
Go
9 lines
177 B
Go
// +build !windows
|
|
|
|
package instructions
|
|
|
|
import "fmt"
|
|
|
|
func errNotJSON(command, _ string) error {
|
|
return fmt.Errorf("%s requires the arguments to be in JSON form", command)
|
|
}
|