https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=264578
--- Comment #5 from Ed Maste <[email protected]> --- I tested a build with three changes 1) change from comment #1 2) set -e in mk-vmimage.sh diff --git a/release/scripts/mk-vmimage.sh b/release/scripts/mk-vmimage.sh index d5985ceb0d25..d1cde2727edc 100755 --- a/release/scripts/mk-vmimage.sh +++ b/release/scripts/mk-vmimage.sh @@ -93,6 +93,9 @@ main() { . "${VMCONFIG}" fi + # Bail if any of the VM image creation steps fail + set -e + vm_create_base vm_install_base vm_extra_install_base 3) switch to latest for arm64, https://reviews.freebsd.org/D35445 and the image built successfully. -- You are receiving this mail because: You are the assignee for the bug.
