| 477 | } |
| 478 | |
| 479 | static int upload_archive(const struct strvec *env) |
| 480 | { |
| 481 | struct child_process cld = CHILD_PROCESS_INIT; |
| 482 | strvec_push(&cld.args, "upload-archive"); |
| 483 | |
| 484 | strvec_pushv(&cld.env, env->v); |
| 485 | |
| 486 | return run_service_command(&cld); |
| 487 | } |
| 488 | |
| 489 | static int receive_pack(const struct strvec *env) |
| 490 | { |
nothing calls this directly
no test coverage detected