summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorwxiaoguang <wxiaoguang@gmail.com>2022-01-13 10:58:46 +0800
committerGitHub <noreply@github.com>2022-01-13 10:58:46 +0800
commiteaf09a53687844603dfd1bd3b88ed44d07f8e094 (patch)
treeab044ec30483cde5ae21402c8d7b316195c555ea /Makefile
parent17b2079f3e06b95ab1ad752ed1218795538a1606 (diff)
downloadgitea-eaf09a53687844603dfd1bd3b88ed44d07f8e094.tar.gz
gitea-eaf09a53687844603dfd1bd3b88ed44d07f8e094.zip
Fix documents for development and bug report (#18249)
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 00318b4afd..aa0fb02ac7 100644
--- a/Makefile
+++ b/Makefile
@@ -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:"; \