9 lines
No EOL
144 B
Bash
Executable file
9 lines
No EOL
144 B
Bash
Executable file
#!/bin/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 |