From d15d2bc6f5d211d403560ffd308640eaf6cc0dd0 Mon Sep 17 00:00:00 2001 From: Valentin Lab Date: Wed, 4 Mar 2015 16:32:30 +0700 Subject: [PATCH] fix: pkg: travis changed it's parsing rules. Suddenly the ``&`` is not accepted anymore. --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 947a81c..42e2ecb 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,7 +7,7 @@ install: - pip install setuptools==9.1 ## version 10 introduce a bug with d2to1 - pip install pip==1.5.6 ## some ``python setup.py`` black magic do not work with d2to1 and pip ``6.0.7`` - pip install coverage coveralls - - [ -e requirements.txt ] && pip install -r requirements.txt + - if [ -e requirements.txt ]; then pip install -r requirements.txt; fi script: - ## checking that we can actually install it - python setup.py install