From 150170294abd80c66af2725282269fa01bd5fc08 Mon Sep 17 00:00:00 2001 From: tydeu Date: Wed, 29 Jun 2022 22:56:19 -0400 Subject: [PATCH] fix: dummy git identity in test to make runner happy --- test/84/test.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/84/test.sh b/test/84/test.sh index ca966cb..8cc4b68 100755 --- a/test/84/test.sh +++ b/test/84/test.sh @@ -8,6 +8,8 @@ LAKE=${LAKE:-../../build/bin/lake} $LAKE new a pushd a git add . +git config user.name test +git config user.email test@example.com git commit -am 'first commit in a' popd @@ -18,6 +20,8 @@ require a from git "../a" @ "master" EOF ../$LAKE update git add . +git config user.name test +git config user.email test@example.com git commit -am 'first commit in b' popd