summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorbaude <bbaude@redhat.com>2017-12-12 12:40:20 -0600
committerAtomic Bot <atomic-devel@projectatomic.io>2017-12-13 20:52:51 +0000
commit61f606e192ad67b4819a909a6f1b18c41e33db2d (patch)
tree72ef78b74fc20661d1b76c1f64631d6f29d4b5c0 /Makefile
parent4db49476616b706902c647995467adbb0a044b24 (diff)
downloadpodman-61f606e192ad67b4819a909a6f1b18c41e33db2d.tar.gz
podman-61f606e192ad67b4819a909a6f1b18c41e33db2d.tar.bz2
podman-61f606e192ad67b4819a909a6f1b18c41e33db2d.zip
Add fix_gofmt target
fix_gofmt will run gofmt -s -w on files that need to be formatted. Useful for developers prior to checking code in. Signed-off-by: baude <bbaude@redhat.com> Closes: #125 Approved by: baude
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index e921b92eb..7be742688 100644
--- a/Makefile
+++ b/Makefile
@@ -72,6 +72,9 @@ lint: .gopathok
gofmt:
@./hack/verify-gofmt.sh
+fix_gofmt:
+ @./hack/verify-gofmt.sh -f
+
conmon:
$(MAKE) -C $@