From fdbb1704e0bd18d7b9eafc9dabd8b7d600976275 Mon Sep 17 00:00:00 2001 From: Yuki Inoue Date: Thu, 28 Apr 2016 22:08:30 +0900 Subject: [PATCH] Fix tmux sourcecode url to github The sourceforge project of tmux seems to have been removed. So, wgetting from github releases instead of sourceforge. --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 85eb9ca..5a40179 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,7 +8,7 @@ env: before_install: - sudo apt-get update - sudo apt-get install -y bc build-essential libevent-dev libncurses5-dev - - wget http://downloads.sourceforge.net/tmux/tmux-${TMUX_VERSION}.tar.gz + - wget https://github.com/tmux/tmux/releases/download/${TMUX_VERSION}/tmux-${TMUX_VERSION}.tar.gz - tar -zxf tmux-${TMUX_VERSION}.tar.gz - cd tmux-${TMUX_VERSION} - ./configure && make && sudo make install