diff options
author | Christoph Berg | 2025-02-04 14:48:04 +0000 |
---|---|---|
committer | Christoph Berg | 2025-02-04 14:48:04 +0000 |
commit | 6faa49b5e0dc6f7bef3d43cef549acf29ce63cee (patch) | |
tree | c63d7f5c7b1567c10a5fbc3399dfa8c6dd361a93 | |
parent | 6915823e6a0aa52c57c87146dd01437bf7225747 (diff) |
Fix sed invocation
-rwxr-xr-x | jenkins/generate-pgdg-source | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/jenkins/generate-pgdg-source b/jenkins/generate-pgdg-source index 4a318ac..fcdc6bf 100755 --- a/jenkins/generate-pgdg-source +++ b/jenkins/generate-pgdg-source @@ -237,13 +237,13 @@ case $PACKAGE in pgbouncer) case ${distribution:-} in bookworm|bullseye|noble|jammy|focal) - sed -e '/python3-filelock/a \ python3-contextlib2,' debian/control + sed -i -e '/python3-filelock/a \ python3-contextlib2,' debian/control TWEAK+=("Add python3-contextlib2 build-dependency.") ;; esac case ${distribution:-} in bookworm|bullseye|jammy|focal) - sed -e '/tzdata-legacy/d' debian/control + sed -i -e '/tzdata-legacy/d' debian/control TWEAK+=("Remove tzdata-legacy build-dependency.") ;; esac |