Skip to content

Commit

Permalink
Use 64 bit architecture for MacOS
Browse files Browse the repository at this point in the history
Catalina is 64bit only, etc.
  • Loading branch information
rcaught committed Oct 7, 2019
1 parent f5fb336 commit 8f29ac8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.idea/
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
language: go
go:
- 1.13
- '1.13'
install:
- go get -t -v ./...
- go build -v ./...
Expand All @@ -10,7 +10,7 @@ before_deploy:
- mkdir -p releases/darwin
- mkdir -p releases/windows
- GOOS=linux GOARCH=386 go build -o releases/linux/hosts-override github.com/rcaught/hosts-override
- GOOS=darwin GOARCH=386 go build -o releases/darwin/hosts-override github.com/rcaught/hosts-override
- GOOS=darwin GOARCH=amd64 go build -o releases/darwin/hosts-override github.com/rcaught/hosts-override
- GOOS=windows GOARCH=386 go build -o releases/windows/hosts-override github.com/rcaught/hosts-override
- cd releases/linux
- chmod +x hosts-override
Expand Down

0 comments on commit 8f29ac8

Please sign in to comment.