The branch main has been updated by emaste: URL: https://cgit.FreeBSD.org/src/commit/?id=4194bbb34c60a5bf0fd0ba28f7bfa20b7842ba3f
commit 4194bbb34c60a5bf0fd0ba28f7bfa20b7842ba3f Author: Ed Maste <[email protected]> AuthorDate: 2022-05-16 18:37:21 +0000 Commit: Ed Maste <[email protected]> CommitDate: 2023-05-03 20:58:22 +0000 release: Report disk image filename For someone new to the release bits it's not always clear what files are being created. Report the disk image name explicitly. Reviewed by: gjb Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D39953 --- release/tools/vmimage.subr | 2 ++ 1 file changed, 2 insertions(+) diff --git a/release/tools/vmimage.subr b/release/tools/vmimage.subr index a65ec4f1a1f9..d7dc8ed992b5 100644 --- a/release/tools/vmimage.subr +++ b/release/tools/vmimage.subr @@ -318,6 +318,8 @@ vm_create_disk() { ${ROOTFSPART} \ -o ${VMIMAGE} + echo "Disk image ${VMIMAGE} created." + if [ ${ESP} = "yes" ]; then rm ${espfilename} fi
