build-style/go: support building multiple packages

This commit is contained in:
Dominik Honnef 2015-05-04 13:39:15 +02:00
parent c40889b652
commit 3b617119c7
3 changed files with 7 additions and 8 deletions

View file

@ -10,13 +10,11 @@ do_build() {
fi
go_package=${go_package:-$go_import_path}
cd "${GOPATH}/src/${go_package}"
go get -d "${go_package}"
go build -x "${go_package}"
go get -x ${go_package}
}
do_install() {
go_package=${go_package:-$go_import_path}
cd "${GOPATH}/src/${go_package}"
vbin ${pkgname}
for f in "${GOBIN}"/*; do
vbin "$f"
done
}