Browse Source

Don't install gox unless releasing

tags/v0.1.1
Russ Garrett 7 years ago
parent
commit
9d8a1bd3ab
No account linked to committer's email address
1 changed files with 1 additions and 2 deletions
  1. 1
    2
      .travis.yml

+ 1
- 2
.travis.yml View File

@@ -3,11 +3,10 @@ go:
3 3
 - 1.7
4 4
 env:
5 5
 - PATH=/home/travis/gopath/bin:$PATH
6
-before_install:
7
-- go get github.com/mitchellh/gox
8 6
 script:
9 7
 - go test -v ./...
10 8
 before_deploy:
9
+- go get github.com/mitchellh/gox
11 10
 - gox -os="linux darwin" -arch="amd64 386" -output="dist/{{.OS}}_{{.Arch}}_{{.Dir}}"
12 11
 deploy:
13 12
   provider: releases

Loading…
Cancel
Save