grim/convey

closing merged branch
hostnames
2017-10-13, Gary Kramlich
33eae19fcbbe
file isExecutable
closing merged branch
#!/bin/sh
set -ex
if [ -n ${GO_PACKAGE} ] ; then
_PACKAGE_PATH="/go/src/${GO_PACKAGE}"
_PARENT=$(dirname ${_PACKAGE_PATH})
mkdir -p ${_PARENT}
ln -s ${CONVEY_WORKSPACE} ${_PACKAGE_PATH}
cd ${_PACKAGE_PATH}
fi
go get -v $(go list ./... | grep -v vendor)
go build -x -i -v $@