aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-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) \