aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBas Couwenberg <sebastic@xs4all.nl>2018-03-05 11:41:10 +0100
committerBas Couwenberg <sebastic@xs4all.nl>2018-03-05 11:42:23 +0100
commit973886758abc62e762e1fb75c838599bf8de9552 (patch)
tree71b33aa94e8a8c6f807ef50cdb67b1ba43a28d06
parent5092e929602569bdb75a6c61758191a33a5d813c (diff)
downloadPROJ-973886758abc62e762e1fb75c838599bf8de9552.tar.gz
PROJ-973886758abc62e762e1fb75c838599bf8de9552.zip
Update Travis & AppVeyor configuration to use proj-datumgrid-1.7.
-rw-r--r--appveyor.yml4
-rwxr-xr-xtravis/install.sh4
2 files changed, 4 insertions, 4 deletions
diff --git a/appveyor.yml b/appveyor.yml
index 55622de8..e7e46265 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -59,8 +59,8 @@ test_script:
- if "%BUILD_TYPE%" == "cmake" set PROJ_LIB=C:\projects\proj-4\nad
- if "%BUILD_TYPE%" == "nmake" set PROJ_LIB=C:\PROJ\SHARE
- cd %PROJ_LIB%
- - curl -O http://download.osgeo.org/proj/proj-datumgrid-1.7RC2.zip
- - 7z e -aoa -y proj-datumgrid-1.7RC2.zip
+ - curl -O http://download.osgeo.org/proj/proj-datumgrid-1.7.zip
+ - 7z e -aoa -y proj-datumgrid-1.7.zip
- dir
- cd ..
- dir
diff --git a/travis/install.sh b/travis/install.sh
index a61ad375..8ddc7ae6 100755
--- a/travis/install.sh
+++ b/travis/install.sh
@@ -3,9 +3,9 @@
set -e
# Download grid files to nad/
-wget http://download.osgeo.org/proj/proj-datumgrid-1.7RC2.zip
+wget http://download.osgeo.org/proj/proj-datumgrid-1.7.zip
cd nad
-unzip -o ../proj-datumgrid-1.7RC2.zip
+unzip -o ../proj-datumgrid-1.7.zip
GRIDDIR=`pwd`
echo $GRIDDIR
cd ..