diff options
Diffstat (limited to 'dh_debputy')
-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) { |