aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoseph Richey <joerichey94@gmail.com>2017-10-19 03:36:17 -0700
committerJoseph Richey <joerichey94@gmail.com>2017-10-19 03:36:17 -0700
commitfe76f6f1cc71c75bc1124f4fe3171c679c06aa1c (patch)
tree067a1ece2f29a3b7ea2d338dba8d7ff477beb319
parentb7de8535f899f2b88d61f4f1264fe6a272196536 (diff)
Makefile: only show changed files in "make format"
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 35cf732..0c10a19 100644
--- a/Makefile
+++ b/Makefile
@@ -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) \