mirror of
https://github.com/amineo/t2-stat-parser.git
synced 2026-01-19 17:34:43 +00:00
16 lines
201 B
Bash
Executable file
16 lines
201 B
Bash
Executable file
#!/bin/sh
|
|
|
|
echo "starting..";
|
|
|
|
echo "Checking if build exists.."
|
|
if [ -f /app/main ]
|
|
then
|
|
echo "Build found!"
|
|
/app/main
|
|
else
|
|
echo "No build found, running from source"
|
|
go run *.go
|
|
fi
|
|
|
|
|