diff --git a/tools/osbuilder/rootfs-builder/rootfs.sh b/tools/osbuilder/rootfs-builder/rootfs.sh index e1aac6de05..4f79a3fba1 100755 --- a/tools/osbuilder/rootfs-builder/rootfs.sh +++ b/tools/osbuilder/rootfs-builder/rootfs.sh @@ -839,6 +839,7 @@ delete_unnecessary_files() find "${ROOTFS_DIR}" \ -type f \ \( -name "${u}.service" -o -name "${u}.socket" \) \ + -exec echo "deleting {}" \; \ -exec rm -f {} \; done @@ -847,6 +848,7 @@ delete_unnecessary_files() find "${ROOTFS_DIR}" \ -type f \ -name "${u}" \ + -exec echo "deleting {}" \; \ -exec rm -f {} \; done }