File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 22
22
pushd ${HOME}
23
23
24
24
# fetching data from github should be just as fast as S3
25
- curl -L https://github.com/opengisch/osgeo4travis/archive/qt5bin.tar.gz | tar --strip-components=1 -xz -C /home/travis &
25
+ curl -s -S - L https://github.com/opengisch/osgeo4travis/archive/qt5bin.tar.gz | tar --strip-components=1 -xz -C /home/travis &
26
26
SETUP_OSGEO4W_PID=$!
27
27
28
28
mkdir /home/travis/osgeo4travis
29
29
30
30
# other dependencies live in a cached folder
31
31
pushd depcache
32
32
# Download newer version of cmake than in the repository
33
- [[ -f cmake-3.5.0-Linux-x86_64.tar.gz ]] || curl -O https://cmake.org/files/v3.5/cmake-3.5.0-Linux-x86_64.tar.gz
33
+ [[ -f cmake-3.5.0-Linux-x86_64.tar.gz ]] || curl -s -S - O https://cmake.org/files/v3.5/cmake-3.5.0-Linux-x86_64.tar.gz
34
34
tar --strip-components=1 -zx -f cmake-3.5.0-Linux-x86_64.tar.gz -C /home/travis/osgeo4travis
35
35
36
36
# Download OTB package for Processing tests
37
- [[ -f OTB-5.6.0-Linux64.run ]] || curl -O https://www.orfeo-toolbox.org/packages/archives/OTB/OTB-5.6.0-Linux64.run
37
+ [[ -f OTB-5.6.0-Linux64.run ]] || curl -s -S - O https://www.orfeo-toolbox.org/packages/archives/OTB/OTB-5.6.0-Linux64.run
38
38
sh ./OTB-5.6.0-Linux64.run
39
39
40
40
wait $SETUP_OSGEO4W_PID
You can’t perform that action at this time.
0 commit comments