зеркало из https://github.com/microsoft/git.git
Fix thinko in the logic to refuse unmerged path fed to git-apply-patch-script.
An unmerged path is given as the sole parameter to the script, so it should check against $# being 1, not 2. Signed-off-by: Junio C Hamano <junkio@cox.net>
This commit is contained in:
Родитель
ace1534d6f
Коммит
e4f5b8c69d
|
@ -8,7 +8,7 @@
|
|||
#
|
||||
|
||||
case "$#" in
|
||||
2)
|
||||
1)
|
||||
echo >&2 "cannot handle unmerged diff on path $1."
|
||||
exit 1 ;;
|
||||
esac
|
||||
|
|
Загрузка…
Ссылка в новой задаче