From 999e5c7edd2ea1a986572ccf294bb38861f096cc Mon Sep 17 00:00:00 2001 From: Kirk Rodrigues <2454684+kirkrodrigues@users.noreply.github.com> Date: Fri, 3 Jan 2025 12:55:34 -0500 Subject: [PATCH] Switch back to gz. --- components/core/tools/scripts/lib_install/install-boost.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/core/tools/scripts/lib_install/install-boost.sh b/components/core/tools/scripts/lib_install/install-boost.sh index 0fe0923d2..2733e9886 100755 --- a/components/core/tools/scripts/lib_install/install-boost.sh +++ b/components/core/tools/scripts/lib_install/install-boost.sh @@ -28,9 +28,9 @@ mkdir -p $temp_dir cd $temp_dir # Download source -tar_filename=boost_${version_with_underscores}.tar.bz2 +tar_filename=boost_${version_with_underscores}.tar.gz curl -fsSL https://archives.boost.io/release/${version}/source/${tar_filename} -o ${tar_filename} -tar xf ${tar_filename} +tar xzf ${tar_filename} cd boost_${version_with_underscores} # Build