From 8c823965abd13090c0a72bdcbb03d920c3f04b39 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicolas=20Borbo=C3=ABn?= Date: Tue, 7 Aug 2018 14:59:22 +0200 Subject: [PATCH 1/3] [fix] link to code of conduct --- CONTRIBUTING.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index e28913f44..540eebb79 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -22,7 +22,7 @@ welcome your pull requests: ## Code of conduct Please note by participating in this project, you agree to abide by the [code of conduct]. -[code of conduct]: https://github.com/jesseduffield/lazygit/blob/master/CONTRIBUTING.md +[code of conduct]: https://github.com/jesseduffield/lazygit/blob/master/CODE-OF-CONDUCT.md ## Any contributions you make will be under the MIT Software License In short, when you submit code changes, your submissions are understood to be @@ -31,4 +31,4 @@ covers the project. Feel free to contact the maintainers if that's a concern. ## Report bugs using Github's [issues](https://github.com/jesseduffield/lazygit/issues) We use GitHub issues to track public bugs. Report a bug by [opening a new -issue](https://github.com/jesseduffield/lazygit/issues/new); it's that easy! \ No newline at end of file +issue](https://github.com/jesseduffield/lazygit/issues/new); it's that easy! From 1730089b09b623d55227ddcc8ce02ad57d7f2cf0 Mon Sep 17 00:00:00 2001 From: Jesse Duffield Date: Tue, 7 Aug 2018 23:04:55 +1000 Subject: [PATCH 2/3] try master branch for dep --- .travis.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 81ad1a800..3227277c3 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,14 +5,15 @@ env: matrix: include: - go: 1.x - - go: 1.7 env: LATEST=true + - go: 1.7 - go: tip allow_failures: - go: tip before_install: # Download the binary to bin folder in $GOPATH - - curl -L -s https://github.com/golang/dep/releases/download/v${DEP_VERSION}/dep-linux-386 -o $GOPATH/bin/dep + # - curl -L -s https://github.com/golang/dep/releases/download/v${DEP_VERSION}/dep-linux-386 -o $GOPATH/bin/dep + - curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh # Make the binary executable - chmod +x $GOPATH/bin/dep - ls $GOPATH/bin/ From bab884f1df04073283f5f363b2f96937e200511b Mon Sep 17 00:00:00 2001 From: Jesse Duffield Date: Tue, 7 Aug 2018 23:18:18 +1000 Subject: [PATCH 3/3] nonrelative path to binaries --- .travis.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 3227277c3..d921d365d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -32,9 +32,9 @@ deploy: api_key: secure: TnB8I+swjicHuGTXk3ncm1Aaa12eIJqWV/Lhcnbb01i39p6+fyn3vDMdWPcejt3R8gcJqv4wyP8UQVO9G1qkLppt6V/qAuY5x6nX0MgEa3t+8JLJnGYHZYsuIgan/ecAmeu5+6dgUhr9Oq6zQOEv/O88NsALzMlqnEQNXI8XSoScfhkiVDIp3zWov0vBizCdThnNgTx9zRpJVoqxmhWvgt+me2+fOhSx1Y+3ZA2gE7zq8IFAbxp36d0rsR5lKqmTuF+YsF9iQ7Ar+xCjbRunLsZx+VwGqGfpS/qS7EwsEqBI0vEO76eFJkwEsIzOvJiFNhBDUu3upquBFMT4uzxRxH3eV+J4mZtu29UDLdvKI5Q730Lk9AgmH4now+RmP08M0SEXJa+AnHeuBv2u1iU5bu+sI6CORVQzKQwOph9AABDjSZ54wrXIpYEeIW2sz8nx+hiG6QL1mqfM/l+55BR69u3vxKYMryQBxPuzhZCTOqqI4uahlb6GIUNZJ9vGZeIA9HFJq3ymW8cdrpYzhKf3Nx9jK+Yb81h5/AHq9iChXEC63VPCDXXGRllh2UYWNYCaAdtk+ekpLR8299e4CaEregy6g5U2S3/xrBKl87miu1uJ/fquXoxGdSU+JcmsmXZ26sGIU2TCYdNjSfIgpOyfMmB4JNtKHqWRHA9Fe42CRpA= file: - - lazygit.windows.amd64.exe - - lazygit.darwin.amd64 - - lazygit.linux.amd64 + - $GOPATH/bin/lazygit.windows.amd64.exe + - $GOPATH/bin/lazygit.darwin.amd64 + - $GOPATH/bin/lazygit.linux.amd64 on: repo: jesseduffield/lazygit tags: true