]> sourceware.org Git - libabigail.git/commitdiff
tests/runtestabidb?.sh.in: Fix git initialization
authorDodji Seketeli <dodji@redhat.com>
Wed, 17 Apr 2024 13:47:05 +0000 (15:47 +0200)
committerDodji Seketeli <dodji@redhat.com>
Wed, 17 Apr 2024 14:31:57 +0000 (16:31 +0200)
* tests/runtestabidb[1-2].sh.in: Initialize email & user name
          for the local git repository.

Signed-off-by: Dodji Seketeli <dodji@redhat.com>
tests/runtestabidb1.sh.in
tests/runtestabidb2.sh.in

index ad4b7e28f790dfd646c34913a2c7c6a69ee82c4e..9a0dc0594e0c085c184eed48db7b21de50a0c4c6 100755 (executable)
@@ -31,6 +31,9 @@ function clean_env
 trap "clean_env" EXIT
 
 git init $gitdir
+cd $gitdir
+git config  user.email "john@tester.doe.com"
+git config  user.name "John Tester Doe"
 
 # Run a quick test against the local distribution, presumed via debuginfod
 unset DEBUGINFOD_VERBOSE DEBUGINFOD_PROGRESS
index bff5fc53f35fb961c38b92c4c5daeaa15f86e4c0..f2ce7adf2504f50053653426e5f17c7f25241dea 100755 (executable)
@@ -35,6 +35,9 @@ function clean_env
 }
 
 git init $gitdir
+cd $gitdir
+git config  user.email "john@tester.doe.com"
+git config  user.name "John Tester Doe"
 
 # Build a little shared library, a binary against it, then
 # break it with an update
This page took 0.034002 seconds and 5 git commands to generate.