]> git.ipfire.org Git - thirdparty/git.git/commit
run-command: introduce function to prepare auto-maintenance process
authorPatrick Steinhardt <ps@pks.im>
Wed, 17 Apr 2024 06:16:31 +0000 (08:16 +0200)
committerJunio C Hamano <gitster@pobox.com>
Wed, 17 Apr 2024 15:42:26 +0000 (08:42 -0700)
commitb396ee6bed7882af3333eb52333f8a34b648437d
tree800f4cb7cb9b676d7c6a1d9b65de17d3cce292d1
parent3c2a3fdc388747b9eaf4a4a4f2035c1c9ddb26d0
run-command: introduce function to prepare auto-maintenance process

The `run_auto_maintenance()` function is responsible for spawning a new
`git maintenance run --auto` process. To do so, it sets up the `sturct
child_process` and then runs it by executing `run_command()` directly.
This is rather inflexible in case callers want to modify the child
process somewhat, e.g. to redirect stderr or stdout.

Introduce a new `prepare_auto_maintenance()` function to plug this gap.

Signed-off-by: Patrick Steinhardt <ps@pks.im>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
run-command.c
run-command.h