Signed-off-by: John Howard <jhoward@microsoft.com> Upstream-commit: fe7b4d8fcd737b9162540149acc427d51d1ddfb9 Component: engine
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"}
|
|
}
|