Files
site/main.sh
Rawley Fowler 179c0196f1 Update main.sh
2022-04-26 15:19:31 -05:00

10 lines
244 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
$1/main >> /var/log/rawleyxyz/log 2>&1
else
go build "$1/main.go"
$1/main >> /var/log/rawleyxyz/log 2>&1
fi