mirror of
https://github.com/git/git.git
synced 2025-03-15 01:11:16 +00:00
git-am: re-fix the diag message printing
The $FIRSTLINE variable is from the user's commit and can contain arbitrary backslash escapes that may be (mis)interpreted when given to "echo", depending on the implementation. Use "printf" to work around the issue. Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
parent
a70d4100d0
commit
4d2e283a1e
@ -501,7 +501,7 @@ do
|
||||
fi
|
||||
if test $apply_status != 0
|
||||
then
|
||||
echo "Patch failed at $msgnum $FIRSTLINE"
|
||||
printf 'Patch failed at %s %s\n' "$msgnum" "$FIRSTLINE"
|
||||
stop_here_user_resolve $this
|
||||
fi
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user