diff options
author | Helmut Grohne <helmut@subdivi.de> | 2021-04-23 20:00:14 +0200 |
---|---|---|
committer | Helmut Grohne <helmut@subdivi.de> | 2021-04-23 20:00:14 +0200 |
commit | d96bc83bf4c0faae1d38c771abc36c6eb9938e95 (patch) | |
tree | 4ef9efb9d52aa95cb7d588606e728b5317e90745 /mdbp/sbuild.py | |
parent | b4a5fec8884ee6a64349968514831236f607ab82 (diff) | |
download | mdbp-d96bc83bf4c0faae1d38c771abc36c6eb9938e95.tar.gz |
sbuild: pass --nolog
Neither pbuilder nor mmdebstrap produce a separate log file (beyond the
output on the standard streams). Disabling the extra file improves
consistency.
Diffstat (limited to 'mdbp/sbuild.py')
-rw-r--r-- | mdbp/sbuild.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mdbp/sbuild.py b/mdbp/sbuild.py index aecc037..6b9c33d 100644 --- a/mdbp/sbuild.py +++ b/mdbp/sbuild.py @@ -20,7 +20,7 @@ def main() -> None: raise ValueError("disabling network not supported with sbuild") cmd = [ - "sbuild", + "sbuild", "--nolog", "--dist=" + build["distribution"], "--no-arch-any" if build.get("type") == "all" else "--arch-any", "--no-arch-all" if build.get("type") == "any" else "--arch-all", |