mirror of
https://github.com/makew0rld/amfora.git
synced 2024-11-28 10:39:45 +03:00
6 lines
186 B
Bash
6 lines
186 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
head -n 3 default.go | tee default.go > /dev/null
|
||
|
echo -n 'var defaultConf = []byte(`' >> default.go
|
||
|
cat ../default-config.toml >> default.go
|
||
|
echo '`)' >> default.go
|