From d25949b8a5a405938e73230e5597b3ac996f6a38 Mon Sep 17 00:00:00 2001 From: Samuel Tyler Date: Sat, 13 Sep 2025 17:53:10 +1000 Subject: [PATCH] Fix preseeding with >9 revisions --- steps/helpers.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/steps/helpers.sh b/steps/helpers.sh index e2c0cb9f..2aa68da6 100755 --- a/steps/helpers.sh +++ b/steps/helpers.sh @@ -529,7 +529,7 @@ src_checksum() { if ! [ "$UPDATE_CHECKSUMS" = True ] ; then # We avoid using pipes as that is not supported by initial sha256sum from mescc-tools-extra local checksum_file=/tmp/checksum - _grep "${pkg}_${revision}" "${SRCDIR}/SHA256SUMS.pkgs" > "${checksum_file}" || true + _grep "${pkg}_${revision}.tar.bz2" "${SRCDIR}/SHA256SUMS.pkgs" > "${checksum_file}" || true # Check there is something in checksum_file if ! [ -s "${checksum_file}" ]; then echo "${pkg}: no checksum stored!"