ci-dockerfiles-deployment: Always run apt-get update before install
May fail with stale package indexes.
Signed-off-by: Paul Sokolovsky <paul.sokolovsky@linaro.org>
Change-Id: I4e1f120f9b8ec66253a79fef8cdfed96a7c5e1b7
diff --git a/ci-dockerfiles-deployment/builders.sh b/ci-dockerfiles-deployment/builders.sh
index e9f0fdd..6030115 100644
--- a/ci-dockerfiles-deployment/builders.sh
+++ b/ci-dockerfiles-deployment/builders.sh
@@ -25,6 +25,7 @@
# For dpkg-architecture call below
if ! type dpkg-architecture
then
+ sudo apt-get -y -qq update
sudo apt-get -y -qq install --no-install-recommends dpkg-dev
fi