1
0
mirror of https://github.com/CPunch/gopenfusion.git synced 2025-05-24 17:10:08 +00:00

added simple build script

This commit is contained in:
CPunch 2023-03-06 18:41:26 -06:00
parent d3d92c404b
commit 93208bc292

7
build.sh Executable file

@ -0,0 +1,7 @@
#!/bin/sh
mkdir -p bin
cd server
go build -o ../bin/server
cd ../
echo 'Done'