diff options
author | Chris Lamb <chris@chris-lamb.co.uk> | 2008-07-04 22:29:43 +0100 |
---|---|---|
committer | Chris Lamb <chris@chris-lamb.co.uk> | 2008-07-04 22:29:43 +0100 |
commit | 3b540b4c4fd8602ad67423c041e7d3a440bf845d (patch) | |
tree | 1957a98d5e483abc868cae0edc170579c54143c1 /helpers | |
parent | 3feafc9a700214c61e53edbad9c514fff7984c5e (diff) | |
download | vyos-live-build-3b540b4c4fd8602ad67423c041e7d3a440bf845d.tar.gz vyos-live-build-3b540b4c4fd8602ad67423c041e7d3a440bf845d.zip |
Fix caching of APT indices (Closes: #478744)
I've tested this the cross-product of LH_APT={apt,aptitude} and
LH_APT_SECURE={enabled,disabled} with no problems.
Signed-off-by: Chris Lamb <chris@chris-lamb.co.uk>
Diffstat (limited to 'helpers')
-rwxr-xr-x | helpers/lh_chroot_sources | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/helpers/lh_chroot_sources b/helpers/lh_chroot_sources index 981692b76..42b92eaf6 100755 --- a/helpers/lh_chroot_sources +++ b/helpers/lh_chroot_sources @@ -228,7 +228,7 @@ case "${1}" in cp -f chroot/var/lib/apt/lists/*_Sources cache/indices_bootstrap fi - cp -f chroot/var/lib/apt/*_Release* cache/indices_bootstrap + cp -f chroot/var/lib/apt/lists/*_Release* cache/indices_bootstrap fi fi |