diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2019-01-10 05:02:39 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-10 05:02:39 -0800 |
commit | d196d9c8160234a0de3867531807cb46f39898be (patch) | |
tree | de8351e0065605614cb36fb48c4fa33e7f1b4763 | |
parent | 64627d910b2113fa2de6b949d846af379e75e305 (diff) | |
parent | db19bed6e8f039ad7d1b5fc1ba10d30c9feef8f4 (diff) | |
download | podman-d196d9c8160234a0de3867531807cb46f39898be.tar.gz podman-d196d9c8160234a0de3867531807cb46f39898be.tar.bz2 podman-d196d9c8160234a0de3867531807cb46f39898be.zip |
Merge pull request #2095 from rhatdan/completions
Add Validate completions
-rw-r--r-- | Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -356,7 +356,10 @@ cmd/podman/varlink/iopodman.go: cmd/podman/varlink/io.podman.varlink API.md: cmd/podman/varlink/io.podman.varlink $(GO) generate ./docs/... -validate: gofmt .gitvalidation +validate.completions: completions/bash/podman + . completions/bash/podman + +validate: gofmt .gitvalidation validate.completions build-all-new-commits: # Validate that all the commits build on top of $(GIT_BASE_BRANCH) @@ -366,6 +369,7 @@ build-all-new-commits: .gopathok \ binaries \ clean \ + validate.completions \ default \ docs \ gofmt \ |