github.com/zhuohuang-hust/src-cbuild@v0.0.0-20230105071821-c7aab3e7c840/builder/dockerfile/evaluator_unix.go (about) 1 // +build !windows 2 3 package dockerfile 4 5 // platformSupports is a short-term function to give users a quality error 6 // message if a Dockerfile uses a command not supported on the platform. 7 func platformSupports(command string) error { 8 return nil 9 }