mirror of
https://github.com/containers/podman.git
synced 2025-06-25 20:26:51 +08:00
Merge pull request #2323 from baude/varlinkconditional
Only build varlink when buildtag is available
This commit is contained in:
@ -42,10 +42,13 @@ func getMainCommands() []*cobra.Command {
|
|||||||
_topCommand,
|
_topCommand,
|
||||||
_umountCommand,
|
_umountCommand,
|
||||||
_unpauseCommand,
|
_unpauseCommand,
|
||||||
_varlinkCommand,
|
|
||||||
volumeCommand.Command,
|
volumeCommand.Command,
|
||||||
_waitCommand,
|
_waitCommand,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if len(_varlinkCommand.Use) > 0 {
|
||||||
|
rootCommands = append(rootCommands, _varlinkCommand)
|
||||||
|
}
|
||||||
return rootCommands
|
return rootCommands
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2,8 +2,10 @@
|
|||||||
|
|
||||||
package main
|
package main
|
||||||
|
|
||||||
import (
|
import "github.com/spf13/cobra"
|
||||||
"github.com/containers/libpod/cmd/podman/cliconfig"
|
|
||||||
)
|
|
||||||
|
|
||||||
var varlinkCommand *cliconfig.PodmanCommand
|
var (
|
||||||
|
_varlinkCommand = &cobra.Command{
|
||||||
|
Use: "",
|
||||||
|
}
|
||||||
|
)
|
||||||
|
Reference in New Issue
Block a user