Skip to content

Commit

Permalink
Add build for linux
Browse files Browse the repository at this point in the history
  • Loading branch information
rbayliss committed Feb 16, 2016
1 parent c00bb2d commit c982c64
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@ deploy:
provider: releases
api_key:
secure: EledDXbXjYmizoXMhcju2O+gIi9O/z1Qaw0jSgF6637Enk9grzWWPlA6FXCnInBExON3xaoQeKWXkwlGaorAlqq9SDOBxGkY6grWw1rvv3gqGJvXB5uli3vwwSE5SVGWSkbcYY8ggf8gLbdViLOkVYY4wRuM6ZYEmeeHGtaJCLshpFFwXAk23XoL14FxN6bzvkoSNJHC0VibZyEqBrqGVDWV5e+usQPHE0RSSVO+rgASB24zai4BXO2kxkwQqtPCX3iOhCFBhP/SvHFFS/mi7WK0xJEYM3qT3Llg6+BUGGfop/2fomA8ZAUBIUys2e8Lnzf3TJAQp7FoiZu0LVNjszIvorFfGTcuLuzJKS5A8CBl0DT1GE9ot8flQnHZZDz1XjF9o8TsnPol+AMEUdW4qDZJ0Sml3o1QtIo49/k7ZPgV6i/VyIFqSD1jxEQyOJIlKuM1WQYYE81iviRNIz/3vjQuL+nkvCLUj0PaTRBgCF93anBp2TknJk0pWHUEXom47Tz1NQb4sadd50zw2W2x7AoyLupXE3qbAvNeeu7QrZndAB7o+Hg41sSKqs6QmZ72GZU3Ycl25a1iCkiYtd4K1WN5KdrLhVYkx3JkWUwUQpXPzDXd8piKswQLk0w0Yjkti6o1UmjaYCarMElySsrFQtxfbfUSMdGnTHKs94Kwt3A=
file: vagabond_darwin_amd64
file:
- vagabond_darwin_amd64
- vagabond_linux_amd64
on:
tags: true

2 changes: 1 addition & 1 deletion cmd/selfupdate.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ func runSelfUpdate(ctx *cli.Context) {
filename := "vagabond_" + runtime.GOOS + "_" + runtime.GOARCH
asset, found := assetSearch(release.Assets, filename)
if !found {
util.Fatal("Unable to find a release asset for this OS and architecture")
util.Fatal("Unable to find a release asset for this OS and architecture. Expected to find " + filename)
}
srcfile, err := fetchAsset(asset)
if err != nil {
Expand Down

0 comments on commit c982c64

Please sign in to comment.