diff options
author | silverwind <me@silverwind.io> | 2020-03-06 07:47:40 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-06 06:47:40 +0000 |
commit | 334f09d93431d17e136e9872ee58d67e33aa5e77 (patch) | |
tree | ac6c4d3d14f12fc499019d6892c8f167c9c5aea0 /Makefile | |
parent | 3f1c0841cb9fc61136b85c6b39613679d2851707 (diff) | |
download | gitea-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-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); \ |