summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakob Unterwurzacher2019-01-02 17:06:01 +0100
committerJakob Unterwurzacher2019-01-02 17:06:01 +0100
commita77d31ca82d4e133a82b082e5a41645ecf50849e (patch)
tree201a6a514d2d9d07585bf4c1f76027ed2bdacb62
parentf320b76fd189a363a34bffe981aa67ab97df3362 (diff)
travis: fix go get command (needs -t), update dep
Only with the "-t" flag does go get download dependencies that are only used in tests.
-rw-r--r--.travis.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml
index cc348e5..0d05ab9 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -24,8 +24,8 @@ before_install:
- sudo chown root:$USER /etc/fuse.conf
install:
- - go get -v .
- - wget https://github.com/golang/dep/releases/download/v0.3.2/dep-linux-amd64 -O dep
+ - go get -t -v .
+ - wget https://github.com/golang/dep/releases/download/v0.5.0/dep-linux-amd64 -O dep
- chmod +x dep
script: