1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-03 05:20:04 +08:00
SpaceVim/bundle/vim-qml/bin/update_contributors.sh

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