Use eaf46c0207df24853a238d4499e7f4426d9d234c instead of 0.3 for CxxUrl

This commit is contained in:
Isaac Connor
2025-12-08 12:27:13 -05:00
parent 359dc796b4
commit 063dfa6376

View File

@@ -130,13 +130,12 @@ commonprep () {
fi
fi
CxxUrlVER="0.3"
CxxUrlVER="eaf46c0207df24853a238d4499e7f4426d9d234c"
if [ -e "build/CxxUrl-${CxxUrlVER}.tar.gz" ]; then
echo "Found existing CxxUrl tarball..."
else
echo "Retrieving CxxUrl ${CxxUrlVER} submodule..."
# The dir that results from untar doesn't have the v
curl -L https://github.com/chmike/CxxUrl/archive/refs/tags/v${CxxUrlVER}.tar.gz > build/CxxUrl-${CxxUrlVER}.tar.gz
curl -L https://github.com/chmike/CxxUrl/archive/${CxxUrlVER}.tar.gz > build/CxxUrl-${CxxUrlVER}.tar.gz
if [ $? -ne 0 ]; then
echo "ERROR: CxxUrl tarball retrieval failed..."
exit 1