From: Corentin Lecouvey Date: Tue, 23 Dec 2014 10:44:58 +0000 (+0100) Subject: Adapt check coding style tool to file extension (*.h and *.cc) X-Git-Tag: accepted/tizen/common/20150119.153839~24 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F42%2F32742%2F1;p=platform%2Fcore%2Fappfw%2Fapp-installers.git Adapt check coding style tool to file extension (*.h and *.cc) Change-Id: I1bcbfc3693018106e42bc8a92423baba9c71f3c9 Signed-off-by: Corentin Lecouvey --- diff --git a/tools/check-coding-style b/tools/check-coding-style index b980f45..0d35434 100755 --- a/tools/check-coding-style +++ b/tools/check-coding-style @@ -15,7 +15,7 @@ cd $BASE/.. # filters FILTERS="-readability/streams,-build/c++11" -cpplint.py --filter="$FILTERS" $(find . \( -name '*.hxx' -o -name '*.cxx' \) ) +cpplint.py --filter="$FILTERS" $(find . \( -name '*.h' -o -name '*.cc' \) ) RET=$? JS_RET_VAL=$?