Adding ls -lR files as .files output.
This commit is contained in:
parent
36a44c849a
commit
ee674162da
|
@ -67,5 +67,7 @@ echo "$(diff chroot.packages.live chroot.packages.install | awk '/^< / { print $
|
|||
|
||||
cp chroot.packages.live ${LIVE_IMAGE_NAME}-${LIVE_IMAGE_ARCHITECTURE}.packages
|
||||
|
||||
cp chroot.files ${LIVE_IMAGE_NAME}-${LIVE_IMAGE_ARCHITECTURE}.files
|
||||
|
||||
# Creating stage file
|
||||
Create_stagefile .build/binary_manifest
|
||||
|
|
|
@ -74,6 +74,7 @@ lb chroot_hacks ${@}
|
|||
lb chroot_interactive ${@}
|
||||
|
||||
Chroot chroot "dpkg-query -W" > chroot.packages.live
|
||||
Chroot chroot "ls -lR" > chroot.files
|
||||
|
||||
# Deconfiguring chroot
|
||||
lb chroot_archives chroot remove ${@}
|
||||
|
|
|
@ -90,6 +90,7 @@ do
|
|||
rm -rf chroot chroot.tmp
|
||||
|
||||
rm -f chroot.packages.live chroot.packages.install
|
||||
rm -f chroot.files
|
||||
|
||||
rm -f .build/chroot*
|
||||
;;
|
||||
|
@ -102,7 +103,7 @@ do
|
|||
rm -f ${LIVE_IMAGE_NAME}*.tar.gz
|
||||
rm -f ${LIVE_IMAGE_NAME}*.zsync*
|
||||
rm -f ${LIVE_IMAGE_NAME}.sh
|
||||
rm -f ${LIVE_IMAGE_NAME}*.contents ${LIVE_IMAGE_NAME}*.packages
|
||||
rm -f ${LIVE_IMAGE_NAME}*.contents ${LIVE_IMAGE_NAME}*.packages ${LIVE_IMAGE_NAME}*.files
|
||||
rm -f MD5SUMS SHA1SUMS SHA256SUMS SHA512SUMS
|
||||
rm -f md5sum.txt sha1sum.txt sha256sum.txt sha512sum.txt
|
||||
|
||||
|
|
Loading…
Reference in New Issue