File: validate_unsupported.go

package info (click to toggle)
golang-github-opencontainers-runtime-tools 0.9.0.141.g5e63903-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 3,160 kB
  • sloc: sh: 559; makefile: 90
file content (8 lines) | stat: -rw-r--r-- 140 bytes parent folder | download
1
2
3
4
5
6
7
8
//go:build !linux

package validate

// CheckLinux is a noop on this platform
func (v *Validator) CheckLinux() (errs error) {
	return nil
}