diff options
| author | Derrick Stolee <stolee@gmail.com> | 2025-09-05 19:26:14 +0000 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2025-09-05 12:32:00 -0700 |
| commit | 3a45c7beb0f66bad122a1c319c71add5533e1f00 (patch) | |
| tree | dc0e68d84a097a742ab8cc1c3f93d2ee86062249 /midx-write.c | |
| parent | c9388d9012a71c6ef83ec94bd72eeb93f53caee4 (diff) | |
| download | git-3a45c7beb0f66bad122a1c319c71add5533e1f00.tar.xz | |
midx-write: put failing response value back
This instance of setting the result to 1 before going to cleanup was
accidentally removed in fcb2205b77 (midx: implement support for writing
incremental MIDX chains, 2024-08-06). Build upon a test that already deletes
a packfile to verify that this error propagates to full command failure.
Signed-off-by: Derrick Stolee <stolee@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'midx-write.c')
| -rw-r--r-- | midx-write.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/midx-write.c b/midx-write.c index 8203b50da1..4c8af23861 100644 --- a/midx-write.c +++ b/midx-write.c @@ -1122,6 +1122,7 @@ static int write_midx_internal(struct repository *r, const char *object_dir, m = m->base_midx; } } else if (ctx.m && fill_packs_from_midx(&ctx)) { + result = 1; goto cleanup; } |
