diff options
author | Steven Silvester | 2016-01-23 06:06:58 -0600 |
---|---|---|
committer | Steven Silvester | 2016-01-23 06:06:58 -0600 |
commit | c2c989add108bfe0d9912cb5f072be47bdc79ee2 (patch) | |
tree | 710f847d708424cd07421d483783024ece484242 | |
parent | d80992be019fb019e2ccb1b42b44787ee9cca2fb (diff) | |
download | scilab_kernel-c2c989add108bfe0d9912cb5f072be47bdc79ee2.tar.gz scilab_kernel-c2c989add108bfe0d9912cb5f072be47bdc79ee2.tar.bz2 scilab_kernel-c2c989add108bfe0d9912cb5f072be47bdc79ee2.zip |
Another syntax fix
-rw-r--r-- | .travis.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml index f266627..777b4b5 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,11 +5,11 @@ python: install: # download Scilab and add it to the path - | - if [[ $ENV == python=3.3* ]]; then + if [[ $ENV == python=3.3* ]]; then wget http://www.scilab.org/download/5.4.1/scilab-5.4.1.bin.linux-x86_64.tar.gz -O scilab.tar.gz; tar xfz scilab.tar.gz; export PATH="$PWD/scilab-5.4.1/bin:$PATH"; - else + else wget http://www.scilab.org/download/5.5.1/scilab-5.5.1.bin.linux-x86_64.tar.gz -O scilab.tar.gz; tar xfz scilab.tar.gz; export PATH="$PWD/scilab-5.5.1/bin:$PATH"; |