7 lines
131 B
Bash
7 lines
131 B
Bash
|
pushd $(dirname "$0")/.. # run from root dir
|
||
|
|
||
|
set -e
|
||
|
|
||
|
go build -o target/pilgrim main.go
|
||
|
|
||
|
popd # switch back to dir we started from
|