Karthik Nayak [off-list ref] writes:
quoted hunk ↗ jump to hunk
@@ -2469,6 +2510,12 @@ static void report(struct command *commands, const struct strbuf *unpack_status,
generate_report(&buf, commands, unpack_status, version);
+ if (run_receive_report_hook(&buf)) {
+ strbuf_reset(&buf);
+ override_cmds_error(commands, "receive-report hook failed");
+ generate_report(&buf, commands, unpack_status, false);
+ }
Hmph, what does 'false' mean here? Didn't you mean to use the same
"version" like you used in the previous call in the preimage?