netcaptain/build.sh

16 lines
380 B
Bash
Raw Normal View History

2020-10-09 20:45:04 +00:00
#!/bin/bash
set -e
# Keep track of the last command executed
trap 'last_command=$current_command; current_command=$BASH_COMMAND' DEBUG
# Echo an error message before exiting
trap 'echo "\"${last_command}\" command finished with exit code $?."' EXIT
# Build chroniclerd binary
cd cmd/ncpt
go build -o ncpt
2020-10-14 21:59:41 +00:00
if [ ! -d ../../build ]; then
mkdir ../../build
fi
mv ncpt ../../build