mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
4982a732f3
Signed-off-by: msabansal <sabansal@microsoft.com>
9 lines
248 B
Go
9 lines
248 B
Go
// +build !windows
|
|
|
|
package dockerfile
|
|
|
|
// platformSupports is a short-term function to give users a quality error
|
|
// message if a Dockerfile uses a command not supported on the platform.
|
|
func platformSupports(command string) error {
|
|
return nil
|
|
}
|