1
0
mirror of https://gitea.com/gitea/act synced 2026-05-06 01:37:48 +02:00
Files
act/vendor/github.com/opencontainers/runc/libcontainer/system/unsupported.go
Casey Lee 320e9b6057 fail on error (#20)
ci-via-github-actions
2019-01-23 11:51:22 -08:00

10 lines
155 B
Go

// +build !linux
package system
// RunningInUserNS is a stub for non-Linux systems
// Always returns false
func RunningInUserNS() bool {
return false
}