From ce91d5ee25ceb04a979e98da2a2884f776ce62be Mon Sep 17 00:00:00 2001 From: Steven Robertson Date: Sun, 25 Oct 2020 16:12:08 -0700 Subject: [PATCH] make sure to apt-get update first before install --- .ci/debops_common_install.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.ci/debops_common_install.py b/.ci/debops_common_install.py index 993db4e3..4d66c39c 100755 --- a/.ci/debops_common_install.py +++ b/.ci/debops_common_install.py @@ -14,7 +14,7 @@ ci_lib.run_batches([ ], [ 'docker pull %s' % (ci_lib.image_for_distro('debian'),), - 'sudo apt-get install --no-install-recommends python-netaddr', + 'sudo apt-get update && sudo apt-get install --no-install-recommends python-netaddr', ], ])