diff options
author | Helmut Grohne <helmut@subdivi.de> | 2022-09-21 13:55:21 +0200 |
---|---|---|
committer | Helmut Grohne <helmut@subdivi.de> | 2022-09-21 13:55:21 +0200 |
commit | 555bfe7c448d4ec1c60ca444bd4f37d41e74db56 (patch) | |
tree | 80d04f8a8a539f6ac391411477a171b3aa8f1886 /mdbp/debspawn.py | |
parent | a6eba58d0c84ae596be527078904447f29622ff1 (diff) | |
download | mdbp-555bfe7c448d4ec1c60ca444bd4f37d41e74db56.tar.gz |
add support for hooks
except for debspawn
Diffstat (limited to 'mdbp/debspawn.py')
-rw-r--r-- | mdbp/debspawn.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mdbp/debspawn.py b/mdbp/debspawn.py index a84bba0..90d111c 100644 --- a/mdbp/debspawn.py +++ b/mdbp/debspawn.py @@ -33,6 +33,8 @@ def main() -> None: raise ValueError("setting lintian options is not supported") if build.get("network") == "disable": raise ValueError("disabling network is not supported") + if build.get("hooks"): + raise ValueError("hooks are not supported") env = compute_env(build) if build.get("build_profiles"): |