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