diff options
| author | Joseph Richey <joerichey94@gmail.com> | 2017-10-19 03:36:17 -0700 |
|---|---|---|
| committer | Joseph Richey <joerichey94@gmail.com> | 2017-10-19 03:36:17 -0700 |
| commit | fe76f6f1cc71c75bc1124f4fe3171c679c06aa1c (patch) | |
| tree | 067a1ece2f29a3b7ea2d338dba8d7ff477beb319 /Makefile | |
| parent | b7de8535f899f2b88d61f4f1264fe6a272196536 (diff) | |
Makefile: only show changed files in "make format"
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -130,8 +130,8 @@ update: # Format all the Go and C code .PHONY: format format-check format: - goimports -l -w $(GO_FILES) - clang-format -i -style=Google $(C_FILES) + @goimports -l -w $(GO_FILES) + @clang-format -i -style=Google $(C_FILES) format-check: @goimports -d $(GO_FILES) \ |