From e31ff0d85086e3823a3039e4fad23090217893a2 Mon Sep 17 00:00:00 2001 From: Alexey Rogachevskiy Date: Mon, 20 Jul 2020 22:45:34 +0300 Subject: [PATCH] build.sh: Always run Packer twice First invocation will most likely fail, but I can't see other major differences between working (travis-integration branch) and not working (main branch) Virtualboxes. --- build.sh | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/build.sh b/build.sh index d6c6690..b54d063 100755 --- a/build.sh +++ b/build.sh @@ -16,10 +16,11 @@ fi echo "--- Using Packer version $(${PACKER} --version)" -if [ ! -f output-virtualbox-iso/clever-devel.ova ]; then +# FIXME: This will fail, but might help virtualbox in travis? +#if [ ! -f output-virtualbox-iso/clever-devel.ova ]; then echo "--- Building base image" - ${PACKER} build -only=virtualbox-iso base_vm.json -fi + ${PACKER} build -only=virtualbox-iso base_vm.json || true +#fi echo "--- Building extended image"