mirror of
https://github.com/astral-sh/ruff
synced 2026-01-06 22:24:05 -05:00
ecosystem: Run git command with no human interaction flag (#5435)
This commit is contained in:
@@ -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()
|
||||
|
||||
|
||||
Reference in New Issue
Block a user