containerd/vendor/github.com/opencontainers/runc/main_unsupported.go
Marcos Lilljedahl d5742209d3 Switch to new vendor directory layout
Fixes #113

Signed-off-by: Marcos Lilljedahl <marcosnils@gmail.com>
2016-03-16 01:56:22 -03:00

17 lines
309 B
Go

// +build !linux
package main
import "github.com/codegangsta/cli"
var (
checkpointCommand cli.Command
eventsCommand cli.Command
restoreCommand cli.Command
specCommand cli.Command
killCommand cli.Command
)
func runAction(*cli.Context) {
fatalf("Current OS is not supported yet")
}