Files
podman/cmd/podman/varlink_dummy.go
baude 2ea8cd1b4f Only build varlink when buildtag is available
Correct mistake that broke things like dlv where we should only
try to add the varlink command to podman when the 'varlink' build
tag is present.

Signed-off-by: baude <bbaude@redhat.com>
2019-02-12 15:53:19 -06:00

12 lines
124 B
Go

// +build !varlink
package main
import "github.com/spf13/cobra"
var (
_varlinkCommand = &cobra.Command{
Use: "",
}
)