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