summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorsilverwind <me@silverwind.io>2020-03-06 07:47:40 +0100
committerGitHub <noreply@github.com>2020-03-06 06:47:40 +0000
commit334f09d93431d17e136e9872ee58d67e33aa5e77 (patch)
treeac6c4d3d14f12fc499019d6892c8f167c9c5aea0 /Makefile
parent3f1c0841cb9fc61136b85c6b39613679d2851707 (diff)
downloadgitea-334f09d93431d17e136e9872ee58d67e33aa5e77.tar.gz
gitea-334f09d93431d17e136e9872ee58d67e33aa5e77.zip
Fix makefile syntax error (#10622)
Fix error found via checkmake. It was the only worthwhile issue it reported.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 7c529e79be..9b3b44dcaa 100644
--- a/Makefile
+++ b/Makefile
@@ -258,7 +258,7 @@ fmt-check:
test:
GO111MODULE=on $(GO) test $(GOTESTFLAGS) -mod=vendor -tags='sqlite sqlite_unlock_notify' $(PACKAGES)
-PHONY: test-check
+.PHONY: test-check
test-check:
@echo "Checking if tests have changed the source tree...";
@diff=$$(git status -s); \