mirror of
https://github.com/makeworld-the-better-one/amfora.git
synced 2024-11-25 05:39:27 +03:00
12 lines
205 B
Bash
12 lines
205 B
Bash
|
#!/usr/bin/env sh
|
||
|
|
||
|
cat > license.go <<-EOF
|
||
|
package display
|
||
|
|
||
|
//go:generate ./license.sh
|
||
|
EOF
|
||
|
echo -n 'var license = []byte(`' >> license.go
|
||
|
cat ../LICENSE | tr '`' "'" >> license.go
|
||
|
echo '`)' >> license.go
|
||
|
|