Date: Mon, 9 Aug 2021 16:25:24 GMT From: Brad Davis <brd@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org Subject: git: be2bc82f18fb - main - release: fix copypasta Message-ID: <202108091625.179GPOXQ094694@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by brd: URL: https://cgit.FreeBSD.org/src/commit/?id=be2bc82f18fb544c5a62b02f6faf2e320e0e881e commit be2bc82f18fb544c5a62b02f6faf2e320e0e881e Author: Brad Davis <brd@FreeBSD.org> AuthorDate: 2021-08-09 16:23:18 +0000 Commit: Brad Davis <brd@FreeBSD.org> CommitDate: 2021-08-09 16:23:18 +0000 release: fix copypasta Approved by: gjb MFC after: 1 week X-MFC-With: fd17ea8c1849039c436f7192ca407db70561df03 Sponsored by: Rubicon Communications, LLC ("Netgate") --- release/tools/vmimage.subr | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/release/tools/vmimage.subr b/release/tools/vmimage.subr index 0e7edb97854a..c2b2e21200f1 100644 --- a/release/tools/vmimage.subr +++ b/release/tools/vmimage.subr @@ -131,7 +131,7 @@ vm_extra_install_packages() { mount -t devfs devfs ${DESTDIR}/dev chroot ${DESTDIR} ${EMULATOR} env ASSUME_ALWAYS_YES=yes \ /usr/sbin/pkg bootstrap -y - for p in ${ASSUME_ALWAYS_YES}; do + for p in ${VM_EXTRA_PACKAGES}; do chroot ${DESTDIR} ${EMULATOR} env ASSUME_ALWAYS_YES=yes \ /usr/sbin/pkg install -y ${p} done
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202108091625.179GPOXQ094694>