Files
site/main.sh
2022-02-23 16:37:53 -06:00

8 lines
168 B
Bash
Executable File

#!/bin/sh
# WIP: Do not use this at the moment
if [ -e "main" ]; then
./main &> /var/log/rawleyxyz/log
else
go build "main.go" && ./main &> /var/log/rawleyxyz/log
fi