diff options
author | William Deegan <bill@baddogconsulting.com> | 2017-12-26 00:46:46 (GMT) |
---|---|---|
committer | William Deegan <bill@baddogconsulting.com> | 2017-12-26 00:46:46 (GMT) |
commit | e676eb5256127a70e39be772c9bc44a82d3daf85 (patch) | |
tree | e3d2386630a9b7aede6eb62f39586013f21d5a48 /.travis | |
parent | ee1048e9b1f823f46832e37b493ba1121fc4d1cc (diff) | |
download | SCons-e676eb5256127a70e39be772c9bc44a82d3daf85.zip SCons-e676eb5256127a70e39be772c9bc44a82d3daf85.tar.gz SCons-e676eb5256127a70e39be772c9bc44a82d3daf85.tar.bz2 |
fix check for py27
Diffstat (limited to '.travis')
-rwxr-xr-x | .travis/install.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis/install.sh b/.travis/install.sh index 1d1f7eb..57636a9 100755 --- a/.travis/install.sh +++ b/.travis/install.sh @@ -25,7 +25,7 @@ sudo cp -rf ldc2-1.4.0-linux-x86_64/* / ls -l /usr/lib/*python*{so,a}* # For now skip swig if py27 -if [[ "$PYVER" -eq "py27" ]]; then +if [[ "$PYVER" == 27 ]]; then # dependencies for swig tests wget https://github.com/swig/swig/archive/rel-3.0.12.tar.gz tar xzf rel-3.0.12.tar.gz |