File tree Expand file tree Collapse file tree 2 files changed +7
-6
lines changed
Expand file tree Collapse file tree 2 files changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -18,6 +18,7 @@ Check out the **[contributing wiki](https://github.com/pion/webrtc/wiki/Contribu
1818* [ Atsushi Watanabe] ( https://github.com/at-wat ) - * Sync files among repositories*
1919* [ Daniele Sluijters] ( https://github.com/daenney ) - * Misc fixes*
2020* [ Luke S] ( https://github.com/encounter )
21+ * [ Aurken Bilbao] ( https://github.com/aurkenb ) - * Misc fixes*
2122
2223### License
2324MIT License - see [ LICENSE] ( LICENSE ) for full text
Original file line number Diff line number Diff line change 2121 . ${SCRIPT_PATH} /.ci.conf
2222fi
2323
24- EXCLUDED_CONTIBUTORS +=(' John R. Bradley' ' renovate[bot]' ' Renovate Bot' ' Pion Bot' )
25- MISSING_CONTIBUTORS =()
24+ EXCLUDED_CONTRIBUTORS +=(' John R. Bradley' ' renovate[bot]' ' Renovate Bot' ' Pion Bot' )
25+ MISSING_CONTRIBUTORS =()
2626
2727shouldBeIncluded () {
28- for i in " ${EXCLUDED_CONTIBUTORS [@]} "
28+ for i in " ${EXCLUDED_CONTRIBUTORS [@]} "
2929 do
3030 if [ " $i " == " $1 " ] ; then
3131 return 1
@@ -40,15 +40,15 @@ for contributor in $(git log --format='%aN' | sort -u)
4040do
4141 if shouldBeIncluded $contributor ; then
4242 if ! grep -q " $contributor " " $SCRIPT_PATH /../README.md" ; then
43- MISSING_CONTIBUTORS +=(" $contributor " )
43+ MISSING_CONTRIBUTORS +=(" $contributor " )
4444 fi
4545 fi
4646done
4747unset IFS
4848
49- if [ ${# MISSING_CONTIBUTORS [@]} -ne 0 ]; then
49+ if [ ${# MISSING_CONTRIBUTORS [@]} -ne 0 ]; then
5050 echo " Please add the following contributors to the README"
51- for i in " ${MISSING_CONTIBUTORS [@]} "
51+ for i in " ${MISSING_CONTRIBUTORS [@]} "
5252 do
5353 echo " $i "
5454 done
You can’t perform that action at this time.
0 commit comments