From: Remi Gacogne Date: Tue, 6 Jan 2026 19:30:24 +0000 (+0100) Subject: builder-support: Fix double spaces in Quiche and CycloneDX helpers X-Git-Tag: rec-5.4.0-beta1~52^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F16687%2Fhead;p=thirdparty%2Fpdns.git builder-support: Fix double spaces in Quiche and CycloneDX helpers Signed-off-by: Remi Gacogne --- diff --git a/builder-support/helpers/install_cargo_cyclonedx.sh b/builder-support/helpers/install_cargo_cyclonedx.sh index 1c3430ff3e..8e850d47f9 100755 --- a/builder-support/helpers/install_cargo_cyclonedx.sh +++ b/builder-support/helpers/install_cargo_cyclonedx.sh @@ -14,7 +14,7 @@ echo $0: Downloading ${CARGO_CYCLONEDX_TARBALL} curl -L -o "${CARGO_CYCLONEDX_TARBALL}" "${CARGO_CYCLONEDX_TARBALL_URL}" echo $0: Checking that the hash of ${CARGO_CYCLONEDX_TARBALL} is ${CARGO_CYCLONEDX_TARBALL_HASH} # Line below should echo two spaces between digest and name -echo "${CARGO_CYCLONEDX_TARBALL_HASH}" "${CARGO_CYCLONEDX_TARBALL}" | sha256sum -c - +echo "${CARGO_CYCLONEDX_TARBALL_HASH}"" ""${CARGO_CYCLONEDX_TARBALL}" | sha256sum -c - tar xf "${CARGO_CYCLONEDX_TARBALL}" cd "cyclonedx-rust-cargo-cargo-cyclonedx-${CARGO_CYCLONEDX_VERSION}" diff --git a/builder-support/helpers/install_quiche.sh b/builder-support/helpers/install_quiche.sh index 3827e756a8..a098b808b2 100755 --- a/builder-support/helpers/install_quiche.sh +++ b/builder-support/helpers/install_quiche.sh @@ -36,7 +36,7 @@ echo $0: Downloading ${QUICHE_TARBALL} curl -L -o "${QUICHE_TARBALL}" "${QUICHE_TARBALL_URL}" echo $0: Checking that the hash of ${QUICHE_TARBALL} is ${QUICHE_TARBALL_HASH} # Line below should echo two spaces between digest and name -echo "${QUICHE_TARBALL_HASH}" "${QUICHE_TARBALL}" | sha256sum -c - +echo "${QUICHE_TARBALL_HASH}"" ""${QUICHE_TARBALL}" | sha256sum -c - tar xf "${QUICHE_TARBALL}" cd "quiche-${QUICHE_VERSION}" # Disable SONAME in the quiche shared library, we do not intend this library to be used by anyone else and it makes things more complicated since we rename it to libdnsdist-quiche