summaryrefslogtreecommitdiff
path: root/mdbp/mmdebstrap.py
diff options
context:
space:
mode:
authorHelmut Grohne <helmut@subdivi.de>2021-05-17 21:30:05 +0200
committerHelmut Grohne <helmut@subdivi.de>2021-05-17 21:30:05 +0200
commita2bba9c7c54c09998d5347de5bc1e9e61648365e (patch)
treed503f6e9cd5c805ec86923f035859481a438c806 /mdbp/mmdebstrap.py
parenta5d4cfd4b996eb2dd513f676c15e4649ad2d36e6 (diff)
downloadmdbp-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.py2
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"), ()),