Skip to content

Commit d25949b

Browse files
committed
Fix preseeding with >9 revisions
1 parent 9ed20b4 commit d25949b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

steps/helpers.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -529,7 +529,7 @@ src_checksum() {
529529
if ! [ "$UPDATE_CHECKSUMS" = True ] ; then
530530
# We avoid using pipes as that is not supported by initial sha256sum from mescc-tools-extra
531531
local checksum_file=/tmp/checksum
532-
_grep "${pkg}_${revision}" "${SRCDIR}/SHA256SUMS.pkgs" > "${checksum_file}" || true
532+
_grep "${pkg}_${revision}.tar.bz2" "${SRCDIR}/SHA256SUMS.pkgs" > "${checksum_file}" || true
533533
# Check there is something in checksum_file
534534
if ! [ -s "${checksum_file}" ]; then
535535
echo "${pkg}: no checksum stored!"

0 commit comments

Comments
 (0)