fix for concurrent builds
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 @@
 
 # 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}