Skip to content

Commit

Permalink
Fix get_code_cov script style
Browse files Browse the repository at this point in the history
  • Loading branch information
richelbilderbeek committed Nov 2, 2023
1 parent 674dfe0 commit 8dd93c9
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions get_code_cov.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#!/bin/bash
for filename in $(find . | egrep '\.cpp$');

for filename in $(find . | grep -E '\.cpp$')
do
gcov -n -o . $filename > /dev/null;
gcov -n -o . "${filename}" > /dev/null
done

0 comments on commit 8dd93c9

Please sign in to comment.