mirror of
https://github.com/moby/moby.git
synced 2026-08-12 22:16:46 +00:00
10 lines
248 B
Go
10 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
|
|
}
|