summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Jackson <ijackson@chiark.greenend.org.uk>2022-12-11 16:20:10 +0000
committerIan Jackson <ijackson@chiark.greenend.org.uk>2022-12-11 16:20:10 +0000
commita3bc65b9a277b2cd9c15fe2bf25dd96666699848 (patch)
tree9640f4e385ef8db9c3b509bf2964ef25526146bf
parent2add231addab83f610540ab264c8939c87a97dc4 (diff)
dgit: polluted source-only changes: report info to stderr
Signed-off-by: Ian Jackson <ijackson@chiark.greenend.org.uk>
-rwxr-xr-xdgit3
1 files changed, 2 insertions, 1 deletions
diff --git a/dgit b/dgit
index aca89e0..92aacdc 100755
--- a/dgit
+++ b/dgit
@@ -2051,7 +2051,8 @@ sub test_source_only_changes ($) {
$l =~ m/\S+$/ or next;
# \.tar\.[a-z0-9]+ covers orig.tar and the tarballs in native packages
unless ($& =~ m/(?:\.dsc|\.diff\.gz|$tarball_f_ext_re|_source\.buildinfo)$/) {
- print f_ "purportedly source-only changes polluted by %s\n", $&;
+ print STDERR
+ f_ "purportedly source-only changes polluted by %s\n", $&;
return 0;
}
}