Skip to content

Commit d070b77

Browse files
committed
Merge branch 'ob/sequencer-reword-error-message'
Update an error message (which would probably never been seen). * ob/sequencer-reword-error-message: sequencer: fix error message on failure to copy SQUASH_MSG
2 parents 877c991 + 82af2c6 commit d070b77

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sequencer.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2319,7 +2319,7 @@ static int do_pick_commit(struct repository *r,
23192319
const char *dest = git_path_squash_msg(r);
23202320
unlink(dest);
23212321
if (copy_file(dest, rebase_path_squash_msg(), 0666)) {
2322-
res = error(_("could not rename '%s' to '%s'"),
2322+
res = error(_("could not copy '%s' to '%s'"),
23232323
rebase_path_squash_msg(), dest);
23242324
goto leave;
23252325
}

0 commit comments

Comments
 (0)