diff options
author | 6543 <6543@obermui.de> | 2022-02-01 18:43:09 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-01 12:43:09 -0500 |
commit | 6f6b8491da0d98121c8cab5c48f95425efa9606d (patch) | |
tree | 12bcb8c729a140e1408621414170a771445f9683 /Makefile | |
parent | bb5f859ec0f853383b85cb16b189fbacf7397551 (diff) | |
download | gitea-6f6b8491da0d98121c8cab5c48f95425efa9606d.tar.gz gitea-6f6b8491da0d98121c8cab5c48f95425efa9606d.zip |
add gitea-fmt back (#18526)
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -231,10 +231,13 @@ clean: .PHONY: fmt fmt: - @hash xgogofumpt > /dev/null 2>&1; if [ $$? -ne 0 ]; then \ + @echo "Running gitea-fmt(with gofmt)..." + @$(GO) run build/code-batch-process.go gitea-fmt -s -w '{file-list}' + @echo "Running gofumpt" + @hash gofumpt > /dev/null 2>&1; if [ $$? -ne 0 ]; then \ $(GO) install mvdan.cc/gofumpt@latest; \ fi - gofumpt -w -l -extra -lang 1.16 . + @gofumpt -w -l -extra -lang 1.16 . .PHONY: vet vet: |