LastMUD/bin/build.sh

9 lines
No EOL
132 B
Bash
Executable file

#!/bin/bash
set -e
pushd $(dirname "$0")/.. # run from root dir
go build -o target/lastmudserver cmd/lastmudserver/main.go
popd