We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e0a7d8b commit c55f364Copy full SHA for c55f364
sequencer.c
@@ -3640,14 +3640,14 @@ static int pick_commits(struct repository *r,
3640
res = do_exec(r, item->arg);
3641
*end_of_arg = saved;
3642
3643
- /* Reread the todo file if it has changed. */
3644
if (res) {
3645
if (opts->reschedule_failed_exec)
3646
reschedule = 1;
3647
} else if (stat(get_todo_path(opts), &st))
3648
res = error_errno(_("could not stat '%s'"),
3649
get_todo_path(opts));
3650
else if (match_stat_data(&todo_list->stat, &st)) {
+ /* Reread the todo file if it has changed. */
3651
todo_list_release(todo_list);
3652
if (read_populate_todo(r, todo_list, opts))
3653
res = -1; /* message was printed */
0 commit comments