You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gosuv/build_standalone.sh

13 lines
171 B

#!/bin/bash -
#
set -e
set -o pipefail
cd $(dirname $0)
source "$HOME/.bash_profile"
export GOPATH=$GOPATH:/home/pi/build_tmp
go generate
exec go build -tags vfs "$@"