Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,8 @@ packer_build_box() {
cd "$DL_DIR/Packer" || exit 1
(echo >&2 "Using Packer to build the $BOX Box. This can take 90-180 minutes depending on bandwidth and hardware.")
PACKER_LOG=1 PACKER_LOG_PATH="$DL_DIR/Packer/packer_build.log"
$(which packer) build --only="virtualbox-iso" "$BOX".json >&2
$(which packer) fix "$BOX".json > "$BOX"FIXED.json >&2
$(which packer) build --only="virtualbox-iso" "$BOX"FIXED.json >&2
echo "$?"
}

Expand Down