From ce698d485ec4dc0315bef08a69061728564e7c7c Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Thu, 5 Sep 2019 09:39:51 +0100 Subject: [PATCH 1/1] dgit: Use $tarball_f_ext_re for test_source_only_changes The old ad-hoc regexp doesn't match .tar.gz.{asc,sig}. Closes: #939280 Signed-off-by: Ian Jackson --- dgit | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dgit b/dgit index 941a14b9..fde8d615 100755 --- a/dgit +++ b/dgit @@ -2015,7 +2015,7 @@ sub test_source_only_changes ($) { foreach my $l (split /\n/, getfield $changes, 'Files') { $l =~ m/\S+$/ or next; # \.tar\.[a-z0-9]+ covers orig.tar and the tarballs in native packages - unless ($& =~ m/(?:\.dsc|\.diff\.gz|\.tar\.[a-z0-9]+|_source\.buildinfo)$/) { + unless ($& =~ m/(?:\.dsc|\.diff\.gz|$tarball_f_ext_re|_source\.buildinfo)$/) { print f_ "purportedly source-only changes polluted by %s\n", $&; return 0; } -- 2.30.2