1
0
Fork 0
mirror of https://github.com/git/git.git synced 2024-05-21 10:26:08 +02:00

mergetool: don't suggest to continue after last file

Eliminate an unnecessary prompt to continue after failed merger, by
not calling the prompt_after_failed_merge function when only one
iteration remains.

Uses positional parameters to count files in the list to make it
easier to see if we have any more paths to process from within the
loop.

Signed-off-by: Nicholas Guriev <guriev-ns@ya.ru>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Nicholas Guriev 2018-08-13 08:09:29 +03:00 committed by Junio C Hamano
parent 53f9a3e157
commit d651a54b8a

View File

@ -491,14 +491,16 @@ main () {
printf "%s\n" "$files"
rc=0
for i in $files
set -- $files
while test $# -ne 0
do
printf "\n"
if ! merge_file "$i"
if ! merge_file "$1"
then
rc=1
prompt_after_failed_merge || exit 1
test $# -ne 1 && prompt_after_failed_merge || exit 1
fi
shift
done
exit $rc