blob: 7d10028575d939184e08765d7e08cc19bce78a01 [file] [log] [blame]
//go:build !windows
// +build !windows
package dockerfile // import "github.com/docker/docker/builder/dockerfile"
func defaultShellForOS(os string) []string {
return []string{"/bin/sh", "-c"}
}