From f5d3233c64e1f751f455a85a972f20d23b4ae5cf Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Lallement Date: Thu, 31 Jan 2019 09:39:22 +0100 Subject: [PATCH] Fixed wonky indentation --- live-build/lb_chroot_layered | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/live-build/lb_chroot_layered b/live-build/lb_chroot_layered index 7f436528..3a3d50c0 100755 --- a/live-build/lb_chroot_layered +++ b/live-build/lb_chroot_layered @@ -124,7 +124,7 @@ reduce_pass_size () { (cd $parent_pass_dir && find . ! -type d -printf "%h/%f|%s|%y|%U|%G|%m\n"|sort > $list_parent) # Only iterate on common files with same type, owner, permission and size - comm -12 $list_pass $list_parent|cut -d'|' -f1|while read f; do + comm -12 $list_pass $list_parent|cut -d'|' -f1|while read f; do # If file contents are different, keep it if ! diff --brief --no-dereference "$pass_dir/$f" "$parent_pass_dir/$f" >/dev/null; then continue @@ -134,8 +134,8 @@ reduce_pass_size () { rm "$pass_dir/$f" done - rm $list_pass - rm $list_parent + rm $list_pass + rm $list_parent } create_chroot_pass () {