Skip to content

Commit

Permalink
ecosystem: Run git command with no human interaction flag (#5435)
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaReiser authored Jun 29, 2023
1 parent 955e9ef commit f7969cf
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion scripts/check_ecosystem.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,10 @@ async def clone(self: Self, checkout_dir: Path) -> AsyncIterator[Path]:
],
)

process = await create_subprocess_exec(*git_command)
process = await create_subprocess_exec(
*git_command,
env={"GIT_TERMINAL_PROMPT": "0"},
)

status_code = await process.wait()

Expand Down

0 comments on commit f7969cf

Please sign in to comment.