From d35d788eac8f42b4e019e33d643c0eddbf6f9438 Mon Sep 17 00:00:00 2001 From: Remi Gacogne Date: Tue, 6 Jan 2026 20:30:24 +0100 Subject: [PATCH] builder-support: Fix double spaces in Quiche and CycloneDX helpers Signed-off-by: Remi Gacogne --- builder-support/helpers/install_cargo_cyclonedx.sh | 2 +- builder-support/helpers/install_quiche.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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 -- 2.47.3