tridactyl/scripts/authors.sh
2018-07-23 12:31:44 +01:00

13 lines
344 B
Bash
Executable file

#!/usr/bin/env bash
set -e
err() { echo "error: line $(caller)"; }
trap err ERR
cd src/static
authors="../../build/static/authors.html"
sed "/REPLACETHIS/,$ d" authors.html > "$authors"
git shortlog -sn HEAD | cut -c8- | awk '!seen[$0]++' | sed 's/^/<p>/' | sed 's/$/<\/p>/' >> "$authors"
sed "1,/REPLACETHIS/ d" authors.html >> "$authors"