summaryrefslogtreecommitdiffstats
path: root/dh_debputy
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-06-07 05:43:21 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-06-07 05:43:21 +0000
commit5de4edf479d364f18bb917d61fb52a31cf0f7b46 (patch)
tree86052b70228ded97b441da0897ead2eff8f509c4 /dh_debputy
parentReleasing progress-linux version 0.1.34-0.0~progress7.99u1. (diff)
downloaddebputy-5de4edf479d364f18bb917d61fb52a31cf0f7b46.tar.xz
debputy-5de4edf479d364f18bb917d61fb52a31cf0f7b46.zip
Merging upstream version 0.1.35.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'dh_debputy')
-rwxr-xr-xdh_debputy5
1 files changed, 5 insertions, 0 deletions
diff --git a/dh_debputy b/dh_debputy
index 4b9edee..1fe6dd1 100755
--- a/dh_debputy
+++ b/dh_debputy
@@ -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) {