This is an automated email from the git hooks/post-receive script. guillem pushed a commit to branch main in repository dpkg.
View the commit online: https://git.dpkg.org/cgit/dpkg/dpkg.git/commit/?id=fbf0527e4b847c2d66ffffc4e7559d9c69db3d94 commit fbf0527e4b847c2d66ffffc4e7559d9c69db3d94 Author: Guillem Jover <[email protected]> AuthorDate: Sun Aug 24 23:08:36 2025 +0200 Dpkg::Source::Patch: Deprecate nofinish option and rename it to no_finish This unifies the option name with the rest of similar negated option names. --- scripts/Dpkg/Source/Patch.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/Dpkg/Source/Patch.pm b/scripts/Dpkg/Source/Patch.pm index 7340ef003..c4c17db76 100644 --- a/scripts/Dpkg/Source/Patch.pm +++ b/scripts/Dpkg/Source/Patch.pm @@ -64,7 +64,7 @@ sub create { } else { $self->_fail_not_same_type($opts{old}, $opts{new}, $opts{filename}); } - $self->finish() unless $opts{nofinish}; + $self->finish() unless $opts{no_finish}; } } -- Dpkg.Org's dpkg

