From eac7fb97db52ce319299ae18097c2f0abbf16a52 Mon Sep 17 00:00:00 2001 From: Chen Yufei Date: Mon, 10 Jun 2013 13:27:58 +0800 Subject: [PATCH] Fix travis build. Travis is now using gvm, GOPATH changed. --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 89d0689a..f07fc39f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,6 +8,6 @@ install: - go install ./cmd/shadowsocks-server - popd script: - - pushd $GOPATH/src/github.com/shadowsocks/shadowsocks-go - - PATH=$PATH:$GOPATH/bin/ bash -x ./script/test.sh + - pushd $TRAVIS_BUILD_DIR + - PATH=$PATH:$HOME/gopath/bin bash -x ./script/test.sh - popd