Skip to content

Commit bfe6923

Browse files
committed
update tally_contributions
1 parent dd8db75 commit bfe6923

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

admin/tally_contributions.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ function blame()
66
{
77
PROJ=$1
88
cd $PROJ
9-
for f in $(find . -iname "*.py") $(find . -iname "*.c*") $(find . -iname *.h) $(find . -iname "*.js") $(find . -iname "*.html")
9+
for f in $(find . -iname "*.py" -o -iname "*.c*" -o -iname "*.h" -o -iname "*.rs" -a '!' \( -path '*/angr/procedures/definitions/*' -o -path '*/angr/protos/*' \))
1010
do
11-
git blame -w $f 2>/dev/null | cat | sed -e "s/[^(]*(//" | sed -e "s/ .*//" | sed -e "s/Andrew/Audrey/"
11+
git blame -w $f 2>/dev/null | cat | sed -e "s/[^(]*(//" | sed -e "s/ .*//" | sed -e "s/mborgerson/Matt/g" -e "s/Andrew/Audrey/g"
1212
done
1313
cd - > /dev/null
1414
}

0 commit comments

Comments
 (0)