diff options
author | Chris Lamb <chris@chris-lamb.co.uk> | 2008-07-04 22:29:43 +0100 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2011-03-09 19:03:36 +0100 |
commit | ad5c5bc2c726983992c61f681e2394b38000cb18 (patch) | |
tree | 1957a98d5e483abc868cae0edc170579c54143c1 | |
parent | e4e77a0c91847688b215d7895bd8c64df57a94bf (diff) | |
download | vyos-live-build-ad5c5bc2c726983992c61f681e2394b38000cb18.tar.gz vyos-live-build-ad5c5bc2c726983992c61f681e2394b38000cb18.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.
-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 |