diff options
author | Daniel Baumann <daniel@debian.org> | 2008-04-15 17:38:03 +0200 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2008-04-15 17:38:03 +0200 |
commit | ece0f9b574cf485a1681ced7bd47c3fc141627d5 (patch) | |
tree | fe24f97f93bdbb05035e206c0f445b9fec219ec8 | |
parent | 3f703f480262779180c3540476e29fd6714c5fda (diff) | |
download | vyos-live-build-ece0f9b574cf485a1681ced7bd47c3fc141627d5.tar.gz vyos-live-build-ece0f9b574cf485a1681ced7bd47c3fc141627d5.zip |
Sorting image file lists.
-rwxr-xr-x | helpers/lh_binary_md5sum | 2 | ||||
-rwxr-xr-x | helpers/lh_source_md5sum | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/helpers/lh_binary_md5sum b/helpers/lh_binary_md5sum index e40be9367..edc636e17 100755 --- a/helpers/lh_binary_md5sum +++ b/helpers/lh_binary_md5sum @@ -70,7 +70,7 @@ cat ../md5sum.txt >> md5sum.txt rm -f ../md5sum.txt # File list -find . | sed -e 's|^.||g' | grep "^/" > ../binary.list +find . | sed -e 's|^.||g' | grep "^/" | sort > ../binary.list cd "${OLDPWD}" diff --git a/helpers/lh_source_md5sum b/helpers/lh_source_md5sum index e8f9b6e98..287d2d178 100755 --- a/helpers/lh_source_md5sum +++ b/helpers/lh_source_md5sum @@ -75,7 +75,7 @@ cat ../md5sum.txt >> md5sum.txt rm -f ../md5sum.txt # File list -find . | sed -e 's|^.||g' | grep "^/" > ../source.list +find . | sed -e 's|^.||g' | grep "^/" | sort > ../source.list cd "${OLDPWD}" |