compat_unix.go 216 B

12345678910111213
  1. // +build !windows
  2. package image
  3. func getOSVersion() string {
  4. // For Linux, images do not specify a version.
  5. return ""
  6. }
  7. func hasOSFeature(_ string) bool {
  8. // Linux currently has no OS features
  9. return false
  10. }