mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
0c350e87a0
reference:
https://github.com/docker/cli/pull/2507
4c99c81326
Signed-off-by: Xiaodong Liu <liuxiaodong@loongson.cn>
11 lines
357 B
Bash
Executable file
11 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" .
|
|
}
|