diff options
author | Daniel Baumann <daniel@debian.org> | 2008-06-09 10:04:44 +0200 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2008-06-09 10:04:44 +0200 |
commit | d59d5118134fc092fbd58c582c6cd6a651f9b5ba (patch) | |
tree | 7afdc42abae371c3a1c18e5dc714b9eb104d6995 | |
parent | 3dd793055a350aa697b4f80c2161740181a1390b (diff) | |
download | vyos-live-build-d59d5118134fc092fbd58c582c6cd6a651f9b5ba.tar.gz vyos-live-build-d59d5118134fc092fbd58c582c6cd6a651f9b5ba.zip |
Only saving source indices to indices cache if source indices are actually existing, thanks to Thanatermesis <thanatermesis.ecvs@elivecd.net>.
-rwxr-xr-x | helpers/lh_chroot_sources | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/helpers/lh_chroot_sources b/helpers/lh_chroot_sources index 154a224a5..677b50f64 100755 --- a/helpers/lh_chroot_sources +++ b/helpers/lh_chroot_sources @@ -200,10 +200,19 @@ case "${1}" in cp -f chroot/etc/apt/trusted.gpg* cache/indices_bootstrap cp -f chroot/var/cache/apt/pkgcache.bin cache/indices_bootstrap - cp -f chroot/var/cache/apt/srcpkgcache.bin cache/indices_bootstrap + + if ls chroot/var/cache/apt/srcpkgcache.bin > /dev/null 2>&1 + then + cp -f chroot/var/cache/apt/srcpkgcache.bin cache/indices_bootstrap + fi cp -f chroot/var/lib/apt/lists/*_Packages cache/indices_bootstrap - cp -f chroot/var/lib/apt/lists/*_Sources cache/indices_bootstrap + + if ls chroot/var/lib/apt/lists/*_Sources > /dev/null 2>&1 + then + cp -f chroot/var/lib/apt/lists/*_Sources cache/indices_bootstrap + fi + cp -f chroot/var/lib/apt/*_Release* cache/indices_bootstrap fi fi |