mirror of
https://github.com/moby/buildkit.git
synced 2025-04-20 05:07:56 +03:00
10 lines
199 B
Go
10 lines
199 B
Go
//go:build !windows
|
|
|
|
package instructions
|
|
|
|
import "github.com/pkg/errors"
|
|
|
|
func errNotJSON(command, _ string) error {
|
|
return errors.Errorf("%s requires the arguments to be in JSON form", command)
|
|
}
|