summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorRuss Allbery <rra@cpan.org>2019-07-14 16:16:56 -0700
committerRuss Allbery <rra@cpan.org>2019-07-14 16:16:56 -0700
commit65f6bda9a030cdb85549cd1a16e81ff215ac9ca4 (patch)
treea4e9a8420963231c89e9613def2b1c0981e8c603 /t
parent3e080f0c052774d6687c038e88d1e6e4f4e1936a (diff)
Set user.name and user.email for Git in dist/basic.t test
Diffstat (limited to 't')
-rwxr-xr-xt/dist/basic.t2
1 files changed, 2 insertions, 0 deletions
diff --git a/t/dist/basic.t b/t/dist/basic.t
index 663680e..2c25da2 100755
--- a/t/dist/basic.t
+++ b/t/dist/basic.t
@@ -47,6 +47,8 @@ dircopy($dataroot, $sourcedir)
my $testpath = File::Spec->catfile($sourcedir, 't', 'api', 'empty.t');
rename($testpath . '.in', $testpath);
chdir($sourcedir);
+systemx(qw(git config --add user.name Test));
+systemx(qw(git config --add user.email test@example.com));
systemx(qw(git add -A .));
systemx(qw(git commit -q -m Initial));