8 lines
173 B
Bash
Executable File
8 lines
173 B
Bash
Executable File
#!/bin/sh
|
|
# WIP: Do not use this at the moment
|
|
if [ -e "main" ]; then
|
|
./main >> /var/log/rawleyxyz/log 2>&1
|
|
else
|
|
go build "main.go" && ./main &> /var/log/rawleyxyz/log
|
|
fi
|