mirror of
https://github.com/moby/moby.git
synced 2026-07-27 03:41:33 +00:00
9 lines
179 B
Go
9 lines
179 B
Go
package dockerfile
|
|
|
|
func defaultShellForPlatform(platform string) []string {
|
|
if platform == "linux" {
|
|
return []string{"/bin/sh", "-c"}
|
|
}
|
|
return []string{"cmd", "/S", "/C"}
|
|
}
|