Skip to content

Commit 4208850

Browse files
committed
Fix preseeding with >9 revisions
1 parent a89659d commit 4208850

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
@@ -524,7 +524,7 @@ src_checksum() {
524524
if ! [ "$UPDATE_CHECKSUMS" = True ] ; then
525525
# We avoid using pipes as that is not supported by initial sha256sum from mescc-tools-extra
526526
local checksum_file=/tmp/checksum
527-
_grep "${pkg}_${revision}" "${SRCDIR}/SHA256SUMS.pkgs" > "${checksum_file}" || true
527+
_grep "${pkg}_${revision}.tar.bz2" "${SRCDIR}/SHA256SUMS.pkgs" > "${checksum_file}" || true
528528
# Check there is something in checksum_file
529529
if ! [ -s "${checksum_file}" ]; then
530530
echo "${pkg}: no checksum stored!"

0 commit comments

Comments
 (0)