From 5fa516219a6d3838bd4022854eae358af09ae742 Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Tue, 18 Feb 2020 12:31:10 +0200 Subject: Fix: when building a systree, apt-get update before apt-get install This avoids packages lists. --- pipelines/systrees.ick | 1 + 1 file changed, 1 insertion(+) diff --git a/pipelines/systrees.ick b/pipelines/systrees.ick index b6da798..24093a0 100644 --- a/pipelines/systrees.ick +++ b/pipelines/systrees.ick @@ -30,6 +30,7 @@ pipelines: import os, subprocess def runcmd(argv, **kwargs): subprocess.check_call(argv, **kwargs) + runcmd(['apt-get', 'update']) runcmd(['apt-get', 'install', '-y'] + params['packages']) where: chroot -- cgit v1.2.1