fixed typo on startup script

This commit is contained in:
rawleyIfowler
2022-02-23 16:37:53 -06:00
parent f7c6407ccb
commit 3acaa20611

View File

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