1
0
mirror of https://github.com/moby/buildkit.git synced 2025-04-20 05:07:56 +03:00
Marat Radchenko 0a5a80cfec Remove pre-Go 1.17 build tags
Signed-off-by: Marat Radchenko <marat@slonopotamus.org>
2024-11-21 10:58:27 +03:00

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)
}