From 0cf80ac45dbc4e2393977b3e01ad7ee6bebc9f8c Mon Sep 17 00:00:00 2001 From: hzyitc Date: Fri, 12 Aug 2022 20:30:31 +0800 Subject: [PATCH] Bugfix: overwrite install.log (#4059) --- lib/distributions.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/distributions.sh b/lib/distributions.sh index 0603e50d1b..5d5762803e 100644 --- a/lib/distributions.sh +++ b/lib/distributions.sh @@ -338,7 +338,7 @@ POST_INSTALL_KERNEL_DEBS # install board support packages if [[ "${REPOSITORY_INSTALL}" != *bsp* ]]; then - install_deb_chroot "${DEB_STORAGE}/${BSP_CLI_PACKAGE_FULLNAME}.deb" | tee "${DEST}"/${LOG_SUBPATH}/install.log 2>&1 + install_deb_chroot "${DEB_STORAGE}/${BSP_CLI_PACKAGE_FULLNAME}.deb" | tee -a "${DEST}"/${LOG_SUBPATH}/install.log 2>&1 else install_deb_chroot "${CHOSEN_ROOTFS}" "remote" fi