8 lines
178 B
Bash
Executable File
8 lines
178 B
Bash
Executable File
#!/bin/sh
|
|
# 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
|
|
fi
|