cbuild/init.sh
2022-09-09 19:02:13 +06:00

17 lines
290 B
Bash

#!/bin/bash
tabs 4
source cbuild/colors.sh
source cbuild/functions.sh
#config
if [ ! -f ".config" ]; then
print "${YELLOW}./.config doesn't exist\n"
cp cbuild/default.config.sh .config
print "${YELLOW}Default config created.\nEdit it's values.\n"
exit
fi
source .config