From ca6b9b9728d7b898b782b067e4ada35dfe21d160 Mon Sep 17 00:00:00 2001 From: Cyrus Harrison Date: Thu, 24 Aug 2023 10:35:32 -0700 Subject: [PATCH] fix zlib download dir --- scripts/build_ascent/build_ascent.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/build_ascent/build_ascent.sh b/scripts/build_ascent/build_ascent.sh index eb638a322..1b43c9d7b 100755 --- a/scripts/build_ascent/build_ascent.sh +++ b/scripts/build_ascent/build_ascent.sh @@ -169,7 +169,7 @@ if [ ! -d ${zlib_install_dir} ]; then if ${build_zlib}; then if [ ! -d ${zlib_src_dir} ]; then echo "**** Downloading ${zlib_tarball}" - curl -L https://www.zlib.net/zlib-${zlib_version}.tar.gz -o ${zlib_tarball} + curl -L https://github.com/madler/zlib/releases/download/v${zlib_version}/zlib-${zlib_version}.tar.gz -o ${zlib_tarball} tar -xzf ${zlib_tarball} fi