2025-06-30 10:17:18 +02:00
|
|
|
#!/usr/bin/env bash
|
2024-04-09 09:23:19 +03:00
|
|
|
|
|
|
|
|
printf "# date: $(date)\n" > AUTHORS
|
|
|
|
|
printf "# this file is auto-generated by scripts/gen-authors.sh\n\n" >> AUTHORS
|
|
|
|
|
|
|
|
|
|
git log --format='%an <%ae>' --reverse --date=short master | awk '!seen[$0]++' | sort >> AUTHORS
|
|
|
|
|
|
|
|
|
|
# if necessary, update your name here. for example: jdoe -> John Doe
|
|
|
|
|
sed -i '' 's/^jdoe/John Doe/g' AUTHORS
|