Browse Source

Fix gox architectures

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

+ 1
- 1
.travis.yml View File

@@ -7,7 +7,7 @@ before_install:
7 7
 - go get github.com/mitchellh/gox
8 8
 script:
9 9
 - go test -v ./...
10
-- gox -os="linux darwin" -output="dist/{{.OS}}_{{.Arch}}_{{.Dir}}"
10
+- gox -os="linux darwin" -arch="amd64 386" -output="dist/{{.OS}}_{{.Arch}}_{{.Dir}}"
11 11
 deploy:
12 12
   provider: releases
13 13
   api_key:

Loading…
Cancel
Save