We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dd8db75 commit bfe6923Copy full SHA for bfe6923
admin/tally_contributions.sh
@@ -6,9 +6,9 @@ function blame()
6
{
7
PROJ=$1
8
cd $PROJ
9
- for f in $(find . -iname "*.py") $(find . -iname "*.c*") $(find . -iname *.h) $(find . -iname "*.js") $(find . -iname "*.html")
+ for f in $(find . -iname "*.py" -o -iname "*.c*" -o -iname "*.h" -o -iname "*.rs" -a '!' \( -path '*/angr/procedures/definitions/*' -o -path '*/angr/protos/*' \))
10
do
11
- git blame -w $f 2>/dev/null | cat | sed -e "s/[^(]*(//" | sed -e "s/ .*//" | sed -e "s/Andrew/Audrey/"
+ 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"
12
done
13
cd - > /dev/null
14
}
0 commit comments