From 136cc1b06a19b898542fbb640aa78bee94e05c7e Mon Sep 17 00:00:00 2001 From: Jan Broer Date: Sun, 14 Feb 2016 00:41:35 +0100 Subject: [PATCH] Fix CI package cache --- Makefile | 20 ++++++++++---------- circle.yml | 2 +- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/Makefile b/Makefile index 223a9e4..4f8c23a 100644 --- a/Makefile +++ b/Makefile @@ -37,16 +37,16 @@ release: dist ghr -u janeczku -r docker-machine-vultr --replace $(VERSION) release/ get-deps: - go get github.com/tcnksm/ghr - go get github.com/tools/godep - go get github.com/ChimeraCoder/tokenbucket - go get github.com/JamesClonk/vultr - go get github.com/docker/machine - go get github.com/docker/docker/pkg/term - go get golang.org/x/crypto/ssh - go get golang.org/x/crypto/ssh/terminal - go get github.com/Azure/go-ansiterm - go get github.com/Sirupsen/logrus + go get -u github.com/tcnksm/ghr + go get -u github.com/tools/godep + go get -u github.com/ChimeraCoder/tokenbucket + go get -u github.com/JamesClonk/vultr + go get -u github.com/docker/machine + go get -u github.com/docker/docker/pkg/term + go get -u golang.org/x/crypto/ssh + go get -u golang.org/x/crypto/ssh/terminal + go get -u github.com/Azure/go-ansiterm + go get -u github.com/Sirupsen/logrus check-gofmt: if [ -n "$(shell gofmt -l .)" ]; then \ diff --git a/circle.yml b/circle.yml index ad715a3..593615c 100644 --- a/circle.yml +++ b/circle.yml @@ -10,7 +10,7 @@ checkout: - git fetch --tags dependencies: - pre: + post: - go version - make get-deps