ecosystem: Run git command with no human interaction flag (#5435)

This commit is contained in:
Micha Reiser 2023-06-29 09:19:11 +02:00 committed by GitHub
parent 955e9ef821
commit f7969cf23c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -69,7 +69,10 @@ class Repository(NamedTuple):
],
)
process = await create_subprocess_exec(*git_command)
process = await create_subprocess_exec(
*git_command,
env={"GIT_TERMINAL_PROMPT": "0"},
)
status_code = await process.wait()