Browse Source

Fix makefile syntax error (#10622)

Fix error found via checkmake. It was the only worthwhile issue it reported.
tags/v1.12.0-dev
silverwind GitHub 5 years ago
parent
commit
e2a37484ae
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      Makefile

+ 1
- 1
Makefile View File

@@ -258,7 +258,7 @@ fmt-check:
test: test:
GO111MODULE=on $(GO) test $(GOTESTFLAGS) -mod=vendor -tags='sqlite sqlite_unlock_notify' $(PACKAGES) GO111MODULE=on $(GO) test $(GOTESTFLAGS) -mod=vendor -tags='sqlite sqlite_unlock_notify' $(PACKAGES)


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


Loading…
Cancel
Save