diff options
Diffstat (limited to 'components/bootstrap_debootstrap')
-rwxr-xr-x | components/bootstrap_debootstrap | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/components/bootstrap_debootstrap b/components/bootstrap_debootstrap index 74805c6e5..2f5c128e7 100755 --- a/components/bootstrap_debootstrap +++ b/components/bootstrap_debootstrap @@ -110,8 +110,9 @@ def main(): print('I: use \'lb clean\' to clean up a previously incomplete build') sys.exit(1) + # packages cache - elif glob.glob('cache/packages.bootstrap/*.deb'): + if glob.glob('cache/packages.bootstrap/*.deb'): if verbose: print('I: Copying cache/packages.bootstrap/*.deb to chroot/var/cache/apt/archives/*.deb') |