Index: /issm/trunk-jpl/jenkins/jenkins.sh
===================================================================
--- /issm/trunk-jpl/jenkins/jenkins.sh	(revision 27707)
+++ /issm/trunk-jpl/jenkins/jenkins.sh	(revision 27708)
@@ -450,4 +450,10 @@
 if [ $EXAMPLES_TEST -eq 1 ]; then
 	export MATLAB_PATH
+
+	# Download examples datasets if they are not already present
+	if [[ -z $(ls -A1q $ISSM_DIR/examples/Data) ]]; then
+		$ISSM_DIR/scripts/DownloadExamplesDatasets.sh
+	fi
+
 	$ISSM_DIR/jenkins/examples_tests.sh
 fi
Index: /issm/trunk-jpl/scripts/DownloadExamplesDatasets.sh
===================================================================
--- /issm/trunk-jpl/scripts/DownloadExamplesDatasets.sh	(revision 27707)
+++ /issm/trunk-jpl/scripts/DownloadExamplesDatasets.sh	(revision 27708)
@@ -25,7 +25,13 @@
 fi
 
-# Get content of page that hosts datasets, reduce to just datasets list, then 
+# Get content of page that hosts datasets, reduce to just datasets list, then
 # parse out dataset links
+#
+# NOTE: Clear DYLD_LIBRARY_PATH in case we have installed our own copy of cURL
+#		and $ISSM_DIR/etc/environment.sh has been sourced as there may be a
+#		conflict between versions of cURL executable and libcurl
+#
 dataset_urls=$(\
+	DYLD_LIBRARY_PATH=""; \
 	curl -Ls ${DATASETS_URL} |\
 	sed '/<!--DATASETS LIST START-->/,/<!--DATASETS LIST END-->/ !d' |\
@@ -34,5 +40,7 @@
 
 # Get datasets
-wget --no-clobber --directory-prefix="${DIRECTORY_PREFIX}" -i - <<< "${dataset_urls}"
+#
+echo "Downloading examples datasets..."
+wget --quiet --no-clobber --directory-prefix="${DIRECTORY_PREFIX}" -i - <<< "${dataset_urls}"
 
 # Expand zip files
