From 8cc444182fe70d2e1425cc50c7dc5e67cbbd335a Mon Sep 17 00:00:00 2001 From: Jesse Duffield Date: Wed, 8 Aug 2018 08:02:33 +1000 Subject: [PATCH] make binaries executable --- .travis.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index fc6620603..90468ea42 100644 --- a/.travis.yml +++ b/.travis.yml @@ -27,7 +27,10 @@ script: # - go get -v ./... # - diff -u <(echo -n) <(gofmt -d .) # can't make gofmt ignore vendor directory # - go vet $(go list ./... | grep -v /vendor/) - - if [ "${LATEST}" = "true" ]; then gox -os="linux darwin windows" -arch="amd64" -ldflags "-X main.Rev=`git rev-parse --short HEAD`" -verbose ./...; fi + - gox -os="linux darwin windows" -arch="amd64" -ldflags "-X main.Rev=`git rev-parse --short HEAD`" -verbose ./... + - chmod +x ./lazygit_windows_amd64.exe + - chmod +x ./lazygit_darwin_amd64 + - chmod +x ./lazygit_linux_amd64 - ls - ls */* deploy: