From 0e86eafd9cea6da36cefcdedfc2c0a5dabdfe264 Mon Sep 17 00:00:00 2001 From: David Minton Date: Mon, 2 Oct 2023 22:12:58 -0500 Subject: [PATCH] Put back the missing download of hdf5 --- buildscripts/build_hdf5.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/buildscripts/build_hdf5.sh b/buildscripts/build_hdf5.sh index 97106c03e..3f93d036b 100755 --- a/buildscripts/build_hdf5.sh +++ b/buildscripts/build_hdf5.sh @@ -47,6 +47,9 @@ if [[ (-d ${DEPENDENCY_DIR}/hdfsrc) && (-f ${DEPENDENCY_DIR}/hdfsrc/README.md) ] fi fi +if [ ! -d ${DEPENDENCY_DIR}/hdfsrc ]; then + curl -s -L https://github.com/HDFGroup/hdf5/releases/download/hdf5-${HDF5_VER}/hdf5-${HDF5_VER}.tar.gz | tar xvz -C ${DEPENDENCY_DIR} +fi printf "\n" printf "*********************************************************\n" printf "* BUILDING HDF5 LIBRARY *\n"