diff options
author | wxiaoguang <wxiaoguang@gmail.com> | 2022-01-13 10:58:46 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-13 10:58:46 +0800 |
commit | eaf09a53687844603dfd1bd3b88ed44d07f8e094 (patch) | |
tree | ab044ec30483cde5ae21402c8d7b316195c555ea /Makefile | |
parent | 17b2079f3e06b95ab1ad752ed1218795538a1606 (diff) | |
download | gitea-eaf09a53687844603dfd1bd3b88ed44d07f8e094.tar.gz gitea-eaf09a53687844603dfd1bd3b88ed44d07f8e094.zip |
Fix documents for development and bug report (#18249)
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -231,7 +231,7 @@ clean: .PHONY: fmt fmt: - @echo "Running go fmt..." + @echo "Running gitea-fmt(with gofmt)..." @$(GO) run build/code-batch-process.go gitea-fmt -s -w '{file-list}' .PHONY: vet @@ -280,7 +280,7 @@ errcheck: .PHONY: fmt-check fmt-check: - # get all go files and run go fmt on them + # get all go files and run gitea-fmt (with gofmt) on them @diff=$$($(GO) run build/code-batch-process.go gitea-fmt -s -d '{file-list}'); \ if [ -n "$$diff" ]; then \ echo "Please run 'make fmt' and commit the result:"; \ |