[postgis-tickets] r16202 - try to fix issue with if condition

Regina Obe lr at pcorp.us
Mon Jan 1 11:13:31 PST 2018


Author: robe
Date: 2018-01-01 11:13:31 -0800 (Mon, 01 Jan 2018)
New Revision: 16202

Modified:
   trunk/ci/winnie/package_postgis.sh
Log:
try to fix issue with if condition

Modified: trunk/ci/winnie/package_postgis.sh
===================================================================
--- trunk/ci/winnie/package_postgis.sh	2017-12-30 12:41:37 UTC (rev 16201)
+++ trunk/ci/winnie/package_postgis.sh	2018-01-01 19:13:31 UTC (rev 16202)
@@ -51,15 +51,15 @@
 
 if [[ "$POSTGIS_MICRO_VERSION"  == *SVN* || "$POSTGIS_MICRO_VERSION"  == *dev* ]] ; then
 	export POSTGIS_SRC=${PROJECTS}/postgis/branches/${POSTGIS_MINOR_VER}
-	export svnurl="http://svn.osgeo.org/postgis/branches/${POSTGIS_MINOR_VER}"
+	export svnurl="https://svn.osgeo.org/postgis/branches/${POSTGIS_MINOR_VER}"
 else
 	#tagged version -- official release
 	export POSTGIS_SRC=${PROJECTS}/postgis/tags/${POSTGIS_MINOR_VER}.${POSTGIS_MICRO_VERSION}
-	export svnurl="http://svn.osgeo.org/postgis/tags/${POSTGIS_MINOR_VER}.${POSTGIS_MICRO_VERSION}"
+	export svnurl="https://svn.osgeo.org/postgis/tags/${POSTGIS_MINOR_VER}.${POSTGIS_MICRO_VERSION}"
 fi;
 
-if [[ "$reference"  == *trunk*]] ; then
-	export svnurl="http://svn.osgeo.org/postgis/trunk"
+if [[ "$reference"  == *trunk* ]] ; then
+	export svnurl="https://svn.osgeo.org/postgis/trunk"
 fi;
 #export POSTGIS_SRC=${PROJECTS}/postgis/trunk
 #POSTGIS_SVN_REVISION=will_be_passed_in_by_bot



More information about the postgis-tickets mailing list