mirror of
https://github.com/makew0rld/amfora.git
synced 2024-11-03 02:37:23 -05:00
13 lines
210 B
Bash
13 lines
210 B
Bash
|
#!/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
|
||
|
|