Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove incorrect Makefile conditionals (LeanerCloud#418)
`ifeq` and similar Makefile constructs run _before_ target invocation. This means that `go vet` and `gofmt` were being run when targets like `make help` were run. FWIW, I don't think the extra code added much over simply invoking `go vet` and `gofmt`. Their output is already very good.
- Loading branch information