diff --git a/Dockerfile.k8swin b/Dockerfile.k8swin index f7de6e4055..2835c21c7b 100644 --- a/Dockerfile.k8swin +++ b/Dockerfile.k8swin @@ -15,7 +15,7 @@ RUN curl -fsSL https://get.docker.com/ | sh ENV GOPATH /gopath ENV PATH "${PATH}:${GOPATH}/bin:/usr/local/go/bin" -RUN go get -u github.com/jteeuwen/go-bindata/go-bindata +RUN go get -u github.com/go-bindata/go-bindata/go-bindata WORKDIR /gopath/src/k8s.io/kubernetes diff --git a/docs/acsengine.md b/docs/acsengine.md index 12613d286b..89ab53bb14 100644 --- a/docs/acsengine.md +++ b/docs/acsengine.md @@ -149,7 +149,7 @@ Build acs-engine: 4. Type `cd %GOPATH%` 5. Type `go get -d github.com/Azure/acs-engine` to download acs-engine from GitHub 6. Type `go get all` to get the supporting components - 7. Type `go get -u github.com/jteeuwen/go-bindata/...` + 7. Type `go get -u github.com/go-bindata/go-bindata/...` 8. Type `cd %GOPATH%\src\github.com\Azure\acs-engine\pkg\acsengine` 9. Type `go generate` 10. Type `cd %GOPATH%\src\github.com\Azure\acs-engine\pkg\i18n` diff --git a/pkg/acsengine/fileloader.go b/pkg/acsengine/fileloader.go index 4672029ed3..9c3918027b 100644 --- a/pkg/acsengine/fileloader.go +++ b/pkg/acsengine/fileloader.go @@ -2,5 +2,5 @@ package acsengine //go:generate go-bindata -nometadata -pkg $GOPACKAGE -prefix ../../parts/ -o templates.go ../../parts/... //go:generate gofmt -s -l -w templates.go -// fileloader use go-bindata (https://github.com/jteeuwen/go-bindata) +// fileloader use go-bindata (https://github.com/go-bindata/go-bindata) // go-bindata is the way we handle embedded files, like binary, template, etc. diff --git a/pkg/i18n/resourceloader.go b/pkg/i18n/resourceloader.go index e4ac64ba8a..7a2b106a7f 100644 --- a/pkg/i18n/resourceloader.go +++ b/pkg/i18n/resourceloader.go @@ -2,5 +2,5 @@ package i18n //go:generate go-bindata -nometadata -pkg $GOPACKAGE -prefix ../../ -o translations.go ../../translations/... //go:generate gofmt -s -l -w translations.go -// resourceloader use go-bindata (https://github.com/jteeuwen/go-bindata) +// resourceloader use go-bindata (https://github.com/go-bindata/go-bindata) // go-bindata is the way we handle embedded files, like binary, template, etc.