mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-03 04:50:04 +08:00
12 lines
243 B
Bash
12 lines
243 B
Bash
#!/bin/sh
|
|
|
|
cat <<_EOF > CONTRIBUTORS.md
|
|
# Contributors
|
|
|
|
In addition to the original work done by Warwick Allison, the following people
|
|
have made contributions:
|
|
|
|
_EOF
|
|
|
|
git shortlog -s | gawk '{$1=""; print "*" $0}' | sort -u >> CONTRIBUTORS.md
|