From 8326fd2038945aacc3a44dbf073773925b590094 Mon Sep 17 00:00:00 2001 From: Anthony Young Date: Tue, 15 Nov 2011 13:03:19 -0800 Subject: [PATCH] fix for concurrent builds --- tools/build_uec.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/build_uec.sh b/tools/build_uec.sh index 39c0d17..2a578fc 100755 --- a/tools/build_uec.sh +++ b/tools/build_uec.sh @@ -34,7 +34,7 @@ fi # Install deps if needed DEPS="kvm libvirt-bin kpartx cloud-utils curl" -apt-get install -y --force-yes $DEPS +apt-get install -y --force-yes $DEPS || true # allow this to fail gracefully for concurrent builds # Where to store files and instances WORK_DIR=${WORK_DIR:-/opt/kvmstack}