diff options
| author | Even Rouault <even.rouault@spatialys.com> | 2019-12-06 21:08:59 +0100 |
|---|---|---|
| committer | Even Rouault <even.rouault@spatialys.com> | 2019-12-10 17:49:00 +0100 |
| commit | 1f01ecb90a751c8099a50e066616639f63522134 (patch) | |
| tree | cd09851b7dcbdd279d6c808090916d981ae36ef8 /test/cli/testdatumfile | |
| parent | 9f908ae47cfa70d3cdb2709a8ab5d8eeb10034fc (diff) | |
| download | PROJ-1f01ecb90a751c8099a50e066616639f63522134.tar.gz PROJ-1f01ecb90a751c8099a50e066616639f63522134.zip | |
Add support for horizontal and vertical grids in GeoTIFF
Diffstat (limited to 'test/cli/testdatumfile')
| -rwxr-xr-x | test/cli/testdatumfile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/test/cli/testdatumfile b/test/cli/testdatumfile index 29a40876..9bd12ce4 100755 --- a/test/cli/testdatumfile +++ b/test/cli/testdatumfile @@ -27,7 +27,11 @@ echo "Running ${0} using ${EXE}:" echo "============================================" mkdir "dir with \" space" -cp ${PROJ_LIB}/conus "dir with \" space/myconus" +if test -f "${PROJ_LIB}/conus"; then + cp "${PROJ_LIB}/conus" "dir with \" space/myconus" +else + cp "`dirname $0`/../../data/conus" "dir with \" space/myconus" +fi OUT=td_out #EXE=../src/cs2cs |
