mirror of
https://github.com/vale981/tridactyl
synced 2025-03-05 09:31:41 -05:00
13 lines
344 B
Bash
Executable file
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"
|