summaryrefslogtreecommitdiff
path: root/lib/App/DocKnot/Dist.pm
diff options
context:
space:
mode:
authorRuss Allbery <rra@cpan.org>2021-08-31 19:51:12 -0700
committerRuss Allbery <rra@cpan.org>2021-08-31 19:51:12 -0700
commit668302ad84c376f7457ed25452454b1451464a65 (patch)
tree7fa03496a88c6a63141f4008cfb3f39e50cf915f /lib/App/DocKnot/Dist.pm
parent221ec9102b0b8f3fb55f8665e2386bb11f0fd9a3 (diff)
Reformat for Perl::Tidy 20210717
Diffstat (limited to 'lib/App/DocKnot/Dist.pm')
-rw-r--r--lib/App/DocKnot/Dist.pm7
1 files changed, 5 insertions, 2 deletions
diff --git a/lib/App/DocKnot/Dist.pm b/lib/App/DocKnot/Dist.pm
index f0170cf..d644057 100644
--- a/lib/App/DocKnot/Dist.pm
+++ b/lib/App/DocKnot/Dist.pm
@@ -388,8 +388,11 @@ sub make_distribution {
}
# Export the Git repository into a new directory.
- my @git = ('git', 'archive', "--remote=$source", "--prefix=${prefix}/",
- 'master',);
+ my @git = (
+ 'git', 'archive',
+ "--remote=$source", "--prefix=${prefix}/",
+ 'master',
+ );
my @tar = qw(tar xf -);
run(\@git, q{|}, \@tar) or die "@git | @tar failed with status $?\n";