Skip to content
Snippets Groups Projects
Commit efd10ea0 authored by Lars Bilke's avatar Lars Bilke
Browse files

Make travis happy.

parent 113315d4
No related branches found
No related tags found
No related merge requests found
...@@ -3,7 +3,7 @@ set -e ...@@ -3,7 +3,7 @@ set -e
# check to see if cmake folder is empty # check to see if cmake folder is empty
if [ ! -d "$HOME/cmake-3.1.1-Linux-x86_64/bin" ]; then if [ ! -d "$HOME/cmake-3.1.1-Linux-x86_64/bin" ]; then
cd $HOME cd $HOME
wget http://www.cmake.org/files/v3.1/cmake-3.1.1-Linux-x86_64.tar.gz; wget --no-check-certificate http://www.cmake.org/files/v3.1/cmake-3.1.1-Linux-x86_64.tar.gz;
tar -xzvf cmake-3.1.1-Linux-x86_64.tar.gz; tar -xzvf cmake-3.1.1-Linux-x86_64.tar.gz;
else else
echo 'Using cached cmake directory.'; echo 'Using cached cmake directory.';
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
set -e set -e
if [ ! -d "$HOME/VTK-Install/include" ]; then if [ ! -d "$HOME/VTK-Install/include" ]; then
cd $HOME cd $HOME
wget http://www.opengeosys.org/images/dev/vtk-6.1.0.tar.gz wget --no-check-certificate http://www.opengeosys.org/images/dev/vtk-6.1.0.tar.gz
tar -xzf vtk-6.1.0.tar.gz tar -xzf vtk-6.1.0.tar.gz
else else
echo 'Using cached vtk directory.'; echo 'Using cached vtk directory.';
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment