From: William Lallemand Date: Mon, 19 Jan 2026 12:41:17 +0000 (+0100) Subject: SCRIPTS: build-ssl: clone the quictls branch directly X-Git-Tag: v3.4-dev3~23 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=818b32addc5c9dacd4dc416fb42929fca56e0737;p=thirdparty%2Fhaproxy.git SCRIPTS: build-ssl: clone the quictls branch directly Allow to clone the quictls branch directly using the value from QUICTLS_VERSION. --- diff --git a/scripts/build-ssl.sh b/scripts/build-ssl.sh index f98441b6e..2fc00a24d 100755 --- a/scripts/build-ssl.sh +++ b/scripts/build-ssl.sh @@ -196,11 +196,11 @@ build_aws_lc_fips () { download_quictls () { if [ ! -d "${BUILDSSL_TMPDIR}/quictls" ]; then - git clone --depth=1 ${QUICTLS_URL} ${BUILDSSL_TMPDIR}/quictls + git clone -b "${QUICTLS_VERSION}" --depth=1 ${QUICTLS_URL} ${BUILDSSL_TMPDIR}/quictls else ( cd ${BUILDSSL_TMPDIR}/quictls - git checkout "${QUICTLS_VERSION}" + git checkout "${QUICTLS_VERSION}" || exit 1 git pull ) fi