From bde36aa1ea3b74933872172b9bc69a03dab3e2fe Mon Sep 17 00:00:00 2001 From: Suikan <26223147+suikan4github@users.noreply.github.com> Date: Sat, 10 Jul 2021 12:06:52 +0900 Subject: [PATCH] Refine the display message. No change on the executable code. --- script/lib/common.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/lib/common.sh b/script/lib/common.sh index ba80dff..8fcb0ea 100644 --- a/script/lib/common.sh +++ b/script/lib/common.sh @@ -299,7 +299,7 @@ function post_install() { for n in proc sys dev tmp etc/resolv.conf; do mount --rbind "/$n" "${TARGETMOUNTPOINT}/$n"; done # Copy all scripts to the target /tmp for using in chroot session. - echo "...Copy files in current dir to ${TARGETMOUNTPOINT}/tmp." + echo "...Copying files in current dir to ${TARGETMOUNTPOINT}/tmp." mkdir "${TARGETMOUNTPOINT}/tmp/kaiten-yaki" cp -r ./* -t "${TARGETMOUNTPOINT}/tmp/kaiten-yaki"