diff options
author | Helmut Grohne <helmut@subdivi.de> | 2021-05-17 21:30:05 +0200 |
---|---|---|
committer | Helmut Grohne <helmut@subdivi.de> | 2021-05-17 21:30:05 +0200 |
commit | a2bba9c7c54c09998d5347de5bc1e9e61648365e (patch) | |
tree | d503f6e9cd5c805ec86923f035859481a438c806 /mdbp/mmdebstrap.py | |
parent | a5d4cfd4b996eb2dd513f676c15e4649ad2d36e6 (diff) | |
download | mdbp-a2bba9c7c54c09998d5347de5bc1e9e61648365e.tar.gz |
mmdebstrap: fix logic error in parent commit
Fixes: a5d4cfd4b996 ("mmdebstrap: don't keep downloaded .deb files")
Diffstat (limited to 'mdbp/mmdebstrap.py')
-rw-r--r-- | mdbp/mmdebstrap.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mdbp/mmdebstrap.py b/mdbp/mmdebstrap.py index 4e6d435..86d4b82 100644 --- a/mdbp/mmdebstrap.py +++ b/mdbp/mmdebstrap.py @@ -92,7 +92,7 @@ def main() -> None: priv_drop(["rm", *(f.name for f in dscfiles)], chroot=True, chdir=buildpath.parent))) cmd = ["apt-get", "build-dep", "--yes", - "-oAPT::Keep-Downloaded-Packages=true", + "-oAPT::Keep-Downloaded-Packages=false", "--host-architecture", hostarch, *dict(any=["--arch-only"], all=["--indep-only"]).get(build.get("type"), ()), |