From: Daniel Martí Date: Tue, 5 Jul 2022 15:14:22 +0000 (+0100) Subject: cmd/go: set up git identity for build_buildvcs_auto.txt X-Git-Tag: go1.19rc2~1^2~31 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=c391156f96357593fa18fccee305401e3f82a1a6;p=gostls13.git cmd/go: set up git identity for build_buildvcs_auto.txt Just like in other tests like get_dotfiles.txt or version_buildvcs_git.txt. Without it, I get a failure on my machine: fatal: empty ident name (for ) not allowed Change-Id: I1c17c0d58c539b59154570b5438c7bd850bac5aa Reviewed-on: https://go-review.googlesource.com/c/go/+/416095 Reviewed-by: Ian Lance Taylor TryBot-Result: Gopher Robot Run-TryBot: Daniel Martí Reviewed-by: Dmitri Shuralyov --- diff --git a/src/cmd/go/testdata/script/build_buildvcs_auto.txt b/src/cmd/go/testdata/script/build_buildvcs_auto.txt index 9eac568045..dd9eef5f82 100644 --- a/src/cmd/go/testdata/script/build_buildvcs_auto.txt +++ b/src/cmd/go/testdata/script/build_buildvcs_auto.txt @@ -6,11 +6,15 @@ cd sub exec git init . +exec git config user.name 'Nameless Gopher' +exec git config user.email 'nobody@golang.org' exec git add sub.go exec git commit -m 'initial state' cd .. exec git init +exec git config user.name 'Nameless Gopher' +exec git config user.email 'nobody@golang.org' exec git submodule add ./sub exec git add go.mod example.go exec git commit -m 'initial state'