diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-06-07 05:43:21 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-06-07 05:43:21 +0000 |
commit | f444a9b5ce73bb79e9f7cd1866f1b2b479023333 (patch) | |
tree | f11e47bb5d9c26cd773fde6406a418a70ef1bdfb /dh_debputy | |
parent | Adding upstream version 0.1.34. (diff) | |
download | debputy-f444a9b5ce73bb79e9f7cd1866f1b2b479023333.tar.xz debputy-f444a9b5ce73bb79e9f7cd1866f1b2b479023333.zip |
Adding upstream version 0.1.35.upstream/0.1.35
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rwxr-xr-x | dh_debputy | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -90,6 +90,11 @@ if (! defined $dh{DESTDIR}) { } my $debputy_cmd = $ENV{'DEBPUTY_CMD'} // 'debputy'; +# `debputy` does not know about any -v/--verbose passed directly. +# But it does listen to `DH_VERBOSE` in these integration modes, so we just +# use that for now. At some point, this might be replaced by a proper +# command line option. +$ENV{'DH_VERBOSE'} = '1' if $dh{VERBOSE}; my @debputy_cmdline = ($debputy_cmd); for my $plugin (@plugins) { |