googerteller/make-built-in-config.sh

11 lines
184 B
Bash
Executable File

#!/bin/sh
(
echo \#pragma once
echo 'constexpr char tellertoml[]=R"('
cat teller.conf
echo ')";'
echo 'constexpr char trackerstoml[]=R"('
cat trackers.conf
echo ')";'
) > configs.hh