Also ignoring legacy checksum filenames when creating checksum files.
This commit is contained in:
parent
cc4a598798
commit
499fe805fd
|
@ -68,6 +68,7 @@ do
|
|||
\! -path './boot/boot.bin' \
|
||||
\! -path './boot/grub/stage2_eltorito' \
|
||||
\! -path './*SUMS' \
|
||||
\! -path './*sums.txt' \
|
||||
-print0 | sort -z | xargs -0 ${CHECKSUM}sum > ../${CHECKSUMS}
|
||||
|
||||
cat > ${CHECKSUMS} << EOF
|
||||
|
|
|
@ -72,6 +72,7 @@ do
|
|||
cd ${DIRECTORY}
|
||||
find . -type f \
|
||||
\! -path './*SUMS' \
|
||||
\! -path './*sums.txt' \
|
||||
-print0 | sort -z | xargs -0 ${CHECKSUM}sum > ../${CHECKSUMS}
|
||||
|
||||
cat > ${CHECKSUMS} << EOF
|
||||
|
|
Loading…
Reference in New Issue