X Tutup
Skip to content

Commit f2709c3

Browse files
committed
Missing semi-colons
Signed-off-by: Sebastian Ramacher <sebastian+dev@ramacher.at>
1 parent 30c0dcb commit f2709c3

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.travis.install.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,22 +4,22 @@ set -x
44

55
pip install setuptools
66

7-
if [[ $RUN == nosetests ]] then
7+
if [[ $RUN == nosetests ]]; then
88
# core dependencies
99
pip install pygments requests 'curtsies >=0.1.16,<0.2.0' greenlet
1010
# filewatch specific dependencies
1111
pip install watchdog
1212
# translation specific dependencies
1313
pip install babel
1414
# Python 2.6 specific dependencies
15-
if [[ $TRAVIS_PYTHON_VERSION == 2.6 ]] then
15+
if [[ $TRAVIS_PYTHON_VERSION == 2.6 ]]; then
1616
pip install unittest
1717
fi
1818
# dependencies for crasher tests
1919
pip install Twisted urwid
2020
# build and install
2121
python setup.py install
22-
elif [[ $RUN == build_sphinx ]] then
22+
elif [[ $RUN == build_sphinx ]]; then
2323
# documentation specific dependencies
2424
pip install sphinx
2525
fi

.travis.script.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
set -e
33
set -x
44

5-
if [[ $RUN == build_sphinx ]] then
5+
if [[ $RUN == build_sphinx ]]; then
66
python setup.py build_sphinx
77
python setup.py build_sphinx_man
8-
elif [[ $RUN == nosetests ]] then
8+
elif [[ $RUN == nosetests ]]; then
99
cd build/lib/
1010
nosetests -v bpython/test
1111
fi

0 commit comments

Comments
 (0)
X Tutup