summaryrefslogtreecommitdiff
path: root/dgit
diff options
context:
space:
mode:
authorIan Jackson <ijackson@chiark.greenend.org.uk>2017-08-03 12:08:31 +0100
committerIan Jackson <ijackson@chiark.greenend.org.uk>2017-08-04 23:06:19 +0100
commit072eebfbdd8d6da31e5e89212ca6669b50993ea1 (patch)
treeabd00a3626e96d17b4577a0a5c8743e4bcda602d /dgit
parent3e0e30a2fab1b5770c770bbc4df3d55bef611d20 (diff)
dgit: print-dpkg-source-ignores action
New print-dpkg-source-ignores option to print the big rune you need to pass to dpkg-source to make it work exactly the right. Signed-off-by: Ian Jackson <ijackson@chiark.greenend.org.uk>
Diffstat (limited to 'dgit')
-rwxr-xr-xdgit9
1 files changed, 9 insertions, 0 deletions
diff --git a/dgit b/dgit
index fc9dac7..3c94f03 100755
--- a/dgit
+++ b/dgit
@@ -6425,6 +6425,15 @@ sub cmd_print_dgit_repos_server_source_url {
print $url, "\n" or die $!;
}
+sub pre_print_dpkg_source_ignores {
+ not_necessarily_a_tree();
+}
+sub cmd_print_dpkg_source_ignores {
+ badusage "no arguments allowed to dgit print-dpkg-source-ignores"
+ if @ARGV;
+ print "@dpkg_source_ignores\n" or die $!;
+}
+
sub cmd_setup_mergechangelogs {
badusage "no arguments allowed to dgit setup-mergechangelogs" if @ARGV;
local $isuite = 'DGIT-SETUP-TREE';