From 4e25f2a1934145c99221284c5bf6d85d6c9bf579 Mon Sep 17 00:00:00 2001 From: Remi Gacogne Date: Thu, 6 Mar 2025 10:02:07 +0100 Subject: [PATCH] install_meson: Actually output two spaces for `sha256sum` --- builder-support/helpers/install_meson.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builder-support/helpers/install_meson.sh b/builder-support/helpers/install_meson.sh index 5ab98de3dc..10b8664443 100755 --- a/builder-support/helpers/install_meson.sh +++ b/builder-support/helpers/install_meson.sh @@ -12,7 +12,7 @@ echo $0: Downloading ${MESON_TARBALL} curl -L -o "${MESON_TARBALL}" "${MESON_TARBALL_URL}" echo $0: Checking that the hash of ${MESON_TARBALL} is ${MESON_TARBALL_HASH} # Line below should echo two spaces between digest and name -echo "${MESON_TARBALL_HASH}" "${MESON_TARBALL}" | sha256sum -c - +echo "${MESON_TARBALL_HASH}"" ""${MESON_TARBALL}" | sha256sum -c - tar xf "${MESON_TARBALL}" cd "meson-${MESON_VERSION}" -- 2.47.2