mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
b529d1b093
Originally I worked on this for the multi-stage build Dockerfile changes. Decided to split this out as we are still waiting for multi-stage to be available on CI and rebasing these is pretty annoying. Signed-off-by: Brian Goff <cpuguy83@gmail.com>
12 lines
436 B
Bash
Executable file
12 lines
436 B
Bash
Executable file
#!/bin/sh
|
|
|
|
GOMETALINTER_COMMIT=bfcc1d6942136fd86eb6f1a6fb328de8398fbd80
|
|
|
|
install_gometalinter() {
|
|
echo "Installing gometalinter version $GOMETALINTER_COMMIT"
|
|
go get -d github.com/alecthomas/gometalinter
|
|
cd "$GOPATH/src/github.com/alecthomas/gometalinter"
|
|
git checkout -q "$GOMETALINTER_COMMIT"
|
|
go build -buildmode=pie -o ${PREFIX}/gometalinter github.com/alecthomas/gometalinter
|
|
GOBIN=${PREFIX} ${PREFIX}/gometalinter --install
|
|
}
|