Simplifying package cache stanza in python bootstrap stubs.
This commit is contained in:
parent
0aa8289a37
commit
1a33b7a585
|
@ -105,8 +105,9 @@ def main():
|
||||||
print('I: use \'lb clean\' to clean up a previously incomplete build')
|
print('I: use \'lb clean\' to clean up a previously incomplete build')
|
||||||
|
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
|
||||||
# packages cache
|
# packages cache
|
||||||
elif glob.glob('cache/packages.bootstrap/*.deb'):
|
if glob.glob('cache/packages.bootstrap/*.deb'):
|
||||||
if verbose:
|
if verbose:
|
||||||
print('I: Copying cache/packages.bootstrap/*.deb to chroot/var/cache/bootstrap/*.deb')
|
print('I: Copying cache/packages.bootstrap/*.deb to chroot/var/cache/bootstrap/*.deb')
|
||||||
|
|
||||||
|
|
|
@ -110,8 +110,9 @@ def main():
|
||||||
print('I: use \'lb clean\' to clean up a previously incomplete build')
|
print('I: use \'lb clean\' to clean up a previously incomplete build')
|
||||||
|
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
|
||||||
# packages cache
|
# packages cache
|
||||||
elif glob.glob('cache/packages.bootstrap/*.deb'):
|
if glob.glob('cache/packages.bootstrap/*.deb'):
|
||||||
if verbose:
|
if verbose:
|
||||||
print('I: Copying cache/packages.bootstrap/*.deb to chroot/var/cache/apt/archives/*.deb')
|
print('I: Copying cache/packages.bootstrap/*.deb to chroot/var/cache/apt/archives/*.deb')
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue