1
0
Fork 0
mirror of https://github.com/polybar/polybar.git synced 2024-11-11 13:50:56 -05:00

Fix broken travis build

Somehow ubuntu on the travis server does not have
/usr/lib/python2.7/dist-packages in the path and thus the xcbgen module
cannot be found. Adding it to the PYTHONPATH fixes this
This commit is contained in:
patrick96 2016-09-01 18:29:48 +02:00
parent 365a9ccbda
commit 2412dc9627
No known key found for this signature in database
GPG key ID: 521E5E03AEBCA1A7

View file

@ -17,6 +17,7 @@ before_install:
- mkdir $HOME/clang-$LLVM_VERSION
- tar xf $LLVM_ARCHIVE_PATH -C $HOME/clang-$LLVM_VERSION --strip-components 1
- export PATH=$HOME/clang-$LLVM_VERSION/bin:$PATH
- export PYTHONPATH="/usr/lib/python2.7/dist-packages:$PYTHONPATH"
- sudo apt-add-repository -y "ppa:george-edison55/george-edison"
- sudo sed -i "s/trusty/wily/g" /etc/apt/sources.list
- sudo apt-get -qq update