| 1985 | } |
| 1986 | |
| 1987 | int run_auto_maintenance(struct repository *r, int quiet) |
| 1988 | { |
| 1989 | struct child_process maint = CHILD_PROCESS_INIT; |
| 1990 | if (!prepare_auto_maintenance(r, quiet, &maint)) |
| 1991 | return 0; |
| 1992 | return run_command(&maint); |
| 1993 | } |
| 1994 | |
| 1995 | void sanitize_repo_env(struct strvec *env) |
| 1996 | { |
no test coverage detected