diff options
author | Brent Baude <bbaude@redhat.com> | 2020-02-04 13:15:22 -0600 |
---|---|---|
committer | Brent Baude <bbaude@redhat.com> | 2020-02-04 13:15:22 -0600 |
commit | 0577493688c3edbce13d172491d17d624a5c95a0 (patch) | |
tree | ec0c7fad2653d248664393dca323f95b648a78f7 /Makefile | |
parent | bda30094013de14e72bb54e919992f2c8303c272 (diff) | |
download | podman-0577493688c3edbce13d172491d17d624a5c95a0.tar.gz podman-0577493688c3edbce13d172491d17d624a5c95a0.tar.bz2 podman-0577493688c3edbce13d172491d17d624a5c95a0.zip |
{CI:DOCS] run gofmt before lint
the linting task identifies gofmt issues; therefore it makes more sense to run our make gofmt first, which actually fixes the gofmt issues.
Signed-off-by: Brent Baude <bbaude@redhat.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -596,7 +596,7 @@ validate.completions: completions/bash/podman if [ -x /bin/zsh ]; then /bin/zsh completions/zsh/_podman; fi .PHONY: validate -validate: lint gofmt .gitvalidation validate.completions man-page-check +validate: gofmt lint .gitvalidation validate.completions man-page-check .PHONY: build-all-new-commits build-all-new-commits: |