mirror of
https://github.com/moby/moby.git
synced 2026-01-11 18:51:37 +00:00
reference:
https://github.com/docker/cli/pull/2507
4c99c81326
Signed-off-by: Xiaodong Liu <liuxiaodong@loongson.cn>
12 lines
357 B
Bash
Executable File
12 lines
357 B
Bash
Executable File
#!/bin/sh
|
|
|
|
: "${VNDR_COMMIT:=85886e1ac99b8d96590e6e0d9f075dc7a711d132}" # v0.1.1
|
|
|
|
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" .
|
|
}
|