mirror of
https://github.com/opencontainers/runc.git
synced 2026-07-11 22:37:14 +08:00
f76489f0af
The following commands are moved from `contrib/cmd` to `tests/cmd`: - fs-idmap - pidfd-kill - recvtty - remap-rootfs - sd-helper - seccompagent Signed-off-by: Akihiro Suda <akihiro.suda.cz@hco.ntt.co.jp>
10 lines
151 B
Go
10 lines
151 B
Go
//go:build !linux || !seccomp
|
|
|
|
package main
|
|
|
|
import "fmt"
|
|
|
|
func main() {
|
|
fmt.Println("Not supported, to use this compile with build tag: seccomp.")
|
|
}
|