mirror of
https://github.com/vale981/tridactyl
synced 2025-03-05 17:41:40 -05:00
9 lines
257 B
Bash
9 lines
257 B
Bash
![]() |
#!/usr/bin/env bash
|
||
|
cd src/static
|
||
|
|
||
|
authors="../../build/static/authors.html"
|
||
|
|
||
|
sed "/REPLACETHIS/,$ d" authors.html > "$authors"
|
||
|
git shortlog -sn | cut -c8- | sed 's/^/<p>/' | sed 's/$/<\/p>/' >> "$authors"
|
||
|
sed "1,/REPLACETHIS/ d" authors.html >> "$authors"
|