Skip to content

Commit

Permalink
EOD
Browse files Browse the repository at this point in the history
  • Loading branch information
richelbilderbeek committed Nov 18, 2023
1 parent 8dd93c9 commit cba215b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions do_oclint.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash

cpp_files=`find . | egrep "^\./boost_graph_cookbook_1/.*\.cpp$"| egrep -v "_test\.cpp$"`
h_files=`find . | egrep "^\./boost_graph_cookbook_1/.*_.*\.h$"`
cpp_files=$(find . | egrep "^\./boost_graph_cookbook_1/.*\.cpp$"| egrep -v "_test\.cpp$")
h_files=$(find . | egrep "^\./boost_graph_cookbook_1/.*_.*\.h$")

./oclint-0.10.3/bin/oclint -o oclint.log \
-disable-rule ShortVariableName \
Expand Down Expand Up @@ -36,4 +36,4 @@ then
else
echo "OCLint: Fail"
exit 1
fi
fi

0 comments on commit cba215b

Please sign in to comment.