summaryrefslogtreecommitdiff
path: root/cmd/podman/commands.go
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2019-02-13 07:19:48 +0100
committerGitHub <noreply@github.com>2019-02-13 07:19:48 +0100
commit037107bc84bbfe83740fe2979fe9b6ca8ecacea2 (patch)
tree34736460266576df75be40ec5fcb35739efc4ada /cmd/podman/commands.go
parentee27c39f85507993c0a3dfe3c4dfab4c7b7e5e00 (diff)
parent2ea8cd1b4fc5778e0e0b9a83d86fca1f41e76235 (diff)
downloadpodman-037107bc84bbfe83740fe2979fe9b6ca8ecacea2.tar.gz
podman-037107bc84bbfe83740fe2979fe9b6ca8ecacea2.tar.bz2
podman-037107bc84bbfe83740fe2979fe9b6ca8ecacea2.zip
Merge pull request #2323 from baude/varlinkconditional
Only build varlink when buildtag is available
Diffstat (limited to 'cmd/podman/commands.go')
-rw-r--r--cmd/podman/commands.go5
1 files changed, 4 insertions, 1 deletions
diff --git a/cmd/podman/commands.go b/cmd/podman/commands.go
index 2c56d5dec..71eb35048 100644
--- a/cmd/podman/commands.go
+++ b/cmd/podman/commands.go
@@ -42,10 +42,13 @@ func getMainCommands() []*cobra.Command {
_topCommand,
_umountCommand,
_unpauseCommand,
- _varlinkCommand,
volumeCommand.Command,
_waitCommand,
}
+
+ if len(_varlinkCommand.Use) > 0 {
+ rootCommands = append(rootCommands, _varlinkCommand)
+ }
return rootCommands
}