mirror of
https://github.com/makeworld-the-better-one/amfora.git
synced 2024-11-26 10:15:13 +03:00
f10337e429
Co-authored-by: makeworld <25111343+makeworld-the-better-one@users.noreply.github.com>
11 lines
208 B
Bash
Executable File
11 lines
208 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
cat > default.go <<-EOF
|
|
package config
|
|
|
|
//go:generate ./default.sh
|
|
EOF
|
|
echo -n 'var defaultConf = []byte(`' >> default.go
|
|
cat ../default-config.toml >> default.go
|
|
echo '`)' >> default.go
|