1
0
mirror of https://github.com/makew0rld/amfora.git synced 2024-06-03 18:40:43 +00:00
amfora/display/thanks.sh
Peter Steinberg a378eaf37a
Add more about: pages (#187)
Co-authored-by: makeworld
2021-02-12 21:26:07 -05:00

13 lines
210 B
Bash
Executable File

#!/usr/bin/env sh
cat > thanks.go <<-EOF
//nolint
package display
//go:generate ./thanks.sh
EOF
echo -n 'var thanks = []byte(`' >> thanks.go
cat ../THANKS.md | tr '`' "'" >> thanks.go
echo '`)' >> thanks.go