Skip to content

Commit 334f09d

Browse files
authored
Fix makefile syntax error (#10622)
Fix error found via checkmake. It was the only worthwhile issue it reported.
1 parent 3f1c084 commit 334f09d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ fmt-check:
258258
test:
259259
GO111MODULE=on $(GO) test $(GOTESTFLAGS) -mod=vendor -tags='sqlite sqlite_unlock_notify' $(PACKAGES)
260260

261-
PHONY: test-check
261+
.PHONY: test-check
262262
test-check:
263263
@echo "Checking if tests have changed the source tree...";
264264
@diff=$$(git status -s); \

0 commit comments

Comments
 (0)