mirror of
https://github.com/elastic/elasticsearch.git
synced 2025-04-24 23:27:25 -04:00
Fix explicit username setting in func test
This commit is contained in:
parent
b0019bd0a6
commit
d920cf9274
2 changed files with 2 additions and 2 deletions
|
@ -114,7 +114,7 @@ abstract class AbstractGradleFuncTest extends Specification {
|
||||||
void setupLocalGitRepo() {
|
void setupLocalGitRepo() {
|
||||||
execute("git init")
|
execute("git init")
|
||||||
execute('git config user.email "build-tool@elastic.co"')
|
execute('git config user.email "build-tool@elastic.co"')
|
||||||
execute('git config --global user.name "Build tool"')
|
execute('git config user.name "Build tool"')
|
||||||
execute("git add .")
|
execute("git add .")
|
||||||
execute('git commit -m "Initial"')
|
execute('git commit -m "Initial"')
|
||||||
}
|
}
|
||||||
|
|
|
@ -144,7 +144,7 @@ class InternalDistributionBwcSetupPluginFuncTest extends AbstractGradleFuncTest
|
||||||
gradleRunner(workingRemoteGit, "wrapper").build()
|
gradleRunner(workingRemoteGit, "wrapper").build()
|
||||||
execute("git init", workingRemoteGit)
|
execute("git init", workingRemoteGit)
|
||||||
execute('git config user.email "build-tool@elastic.co"', workingRemoteGit)
|
execute('git config user.email "build-tool@elastic.co"', workingRemoteGit)
|
||||||
execute('git config --global user.name "Build tool"', workingRemoteGit)
|
execute('git config user.name "Build tool"', workingRemoteGit)
|
||||||
execute("git add .", workingRemoteGit)
|
execute("git add .", workingRemoteGit)
|
||||||
execute('git commit -m"Initial"', workingRemoteGit)
|
execute('git commit -m"Initial"', workingRemoteGit)
|
||||||
execute("git checkout -b origin/8.0", workingRemoteGit)
|
execute("git checkout -b origin/8.0", workingRemoteGit)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue