From c5fa3c2b04ef704afb6273a8d25f060e4fff96ad Mon Sep 17 00:00:00 2001 From: Sean Whitton Date: Thu, 2 Feb 2017 21:11:09 -0700 Subject: [PATCH] dgit: Refactor to create human-readable $subcommand $cmd,$subcommand now global vars. No functional change. Signed-off-by: Sean Whitton Acked-by: Ian Jackson --- dgit | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/dgit b/dgit index 28795fec..c344d31e 100755 --- a/dgit +++ b/dgit @@ -47,6 +47,8 @@ our $absurdity = undef; ###substituted### our @rpushprotovsn_support = qw(4 3 2); # 4 is new tag format our $protovsn; +our $cmd; +our $subcommand; our $isuite; our $idistro; our $package; @@ -6795,7 +6797,7 @@ if (!@ARGV) { print STDERR $helpmsg or die $!; exit 8; } -my $cmd = shift @ARGV; +$cmd = $subcommand = shift @ARGV; $cmd =~ y/-/_/; my $pre_fn = ${*::}{"pre_$cmd"}; -- 2.30.2