]> source.dussan.org Git - gitea.git/commitdiff
Fix makefile syntax error (#10622)
authorsilverwind <me@silverwind.io>
Fri, 6 Mar 2020 06:47:40 +0000 (07:47 +0100)
committerGitHub <noreply@github.com>
Fri, 6 Mar 2020 06:47:40 +0000 (06:47 +0000)
Fix error found via checkmake. It was the only worthwhile issue it reported.

Makefile

index 7c529e79beb824bdb7896a0a14f9a5dc44da8395..9b3b44dcaa2ba0862b04fd6212c21fee6bf6622d 100644 (file)
--- 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); \