mirror of
https://github.com/LostRuins/koboldcpp.git
synced 2025-09-13 10:29:43 +00:00
# Conflicts: # README.md # llama.cpp # otherarch/sdcpp/SDCPP_LICENSE # scripts/sync-ggml-am.sh # scripts/sync-ggml.sh
9 lines
337 B
Bash
Executable file
9 lines
337 B
Bash
Executable file
#!/bin/bash
|
|
|
|
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
|