mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
a6129c57e6
full diff: https://github.com/lk4d4/vndr/compare/v0.1.1...v0.1.2 - cleanVCS: prevent panic - Consider '.syso' as a Go file for vendoring Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
11 lines
357 B
Bash
Executable file
11 lines
357 B
Bash
Executable file
#!/bin/sh
|
|
|
|
: "${VNDR_COMMIT:=f12b881cb8f081a5058408a58f429b9014833fc6}" # v0.1.2
|
|
|
|
install_vndr() {
|
|
echo "Install vndr version $VNDR_COMMIT"
|
|
git clone https://github.com/LK4D4/vndr.git "$GOPATH/src/github.com/LK4D4/vndr"
|
|
cd "$GOPATH/src/github.com/LK4D4/vndr" || exit 1
|
|
git checkout -q "$VNDR_COMMIT"
|
|
go build ${GO_BUILDMODE} -v -o "${PREFIX}/vndr" .
|
|
}
|