travis.yml add back missing ";"

This commit is contained in:
Gabriel Pettier 2018-05-21 18:19:23 +02:00
parent 2fc9cf5215
commit e2c3094160
1 changed files with 2 additions and 2 deletions

View File

@ -80,10 +80,10 @@ install:
if [ "${PY}" == "3" ]; then
curl -O -L https://www.python.org/ftp/python/3.5.2/python-3.5.2-macosx10.6.pkg;
sudo installer -package python-3.5.2-macosx10.6.pkg -target /;
python3 get-pip.py --user
python3 get-pip.py --user;
python3 -m pip install --upgrade --user cython pillow nose mock docutils;
else
python get-pip.py --user
python get-pip.py --user;
python -m pip install --upgrade --user cython pillow nose mock docutils;
fi;
fi;