mirror of
https://github.com/containers/podman.git
synced 2025-09-25 07:44:24 +08:00

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>
12 lines
124 B
Go
12 lines
124 B
Go
// +build !varlink
|
|
|
|
package main
|
|
|
|
import "github.com/spf13/cobra"
|
|
|
|
var (
|
|
_varlinkCommand = &cobra.Command{
|
|
Use: "",
|
|
}
|
|
)
|