From: Remi Gacogne Date: Thu, 6 Mar 2025 09:02:07 +0000 (+0100) Subject: install_meson: Actually output two spaces for `sha256sum` X-Git-Tag: dnsdist-2.0.0-alpha1~30^2~12 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4e25f2a1934145c99221284c5bf6d85d6c9bf579;p=thirdparty%2Fpdns.git install_meson: Actually output two spaces for `sha256sum` --- 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}"