summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorDaniel Bevenius <daniel.bevenius@gmail.com>2018-09-25 08:51:20 +0200
committerDaniel Bevenius <daniel.bevenius@gmail.com>2018-10-01 10:35:57 +0200
commit6df2c556bda34bd685f4086907ca00cdd7b2ea77 (patch)
tree9c60b2aafb3d5d02c54a9df7615a4caa54fcb862 /Makefile
parentb8a98a807f32bf7c1a99e9a8c3f644c85b977523 (diff)
downloadandroid-node-v8-6df2c556bda34bd685f4086907ca00cdd7b2ea77.tar.gz
android-node-v8-6df2c556bda34bd685f4086907ca00cdd7b2ea77.tar.bz2
android-node-v8-6df2c556bda34bd685f4086907ca00cdd7b2ea77.zip
build: add --quiet to lint-cpp
This commit adds the --quiet flag to cpplint to avoid informational output like: Done processing src/node.cc ... PR-URL: https://github.com/nodejs/node/pull/23075 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index a92371573e..fea678cf45 100644
--- a/Makefile
+++ b/Makefile
@@ -1193,7 +1193,7 @@ lint-cpp: tools/.cpplintstamp
tools/.cpplintstamp: $(LINT_CPP_FILES)
@echo "Running C++ linter..."
- @$(PYTHON) tools/cpplint.py $?
+ @$(PYTHON) tools/cpplint.py --quiet $?
@$(PYTHON) tools/check-imports.py
@touch $@