Files
site/main.sh
2022-05-07 11:24:31 -05:00

10 lines
256 B
Bash
Executable File

#!/bin/sh
# This script is to be run by your init service, such as rc.d
# WIP: Do not use this at the moment.
if [ -e "main" ]; then
./rawleydotxyz >> /var/log/rawleydotxyz 2>&1
else
go build "$1/main.go"
./rawleydotxyz >> /var/log/rawleydotxyz 2>&1
fi