Revision 3bb8d69cddbcad4bd4ae3d1281c42c1aeb297355 authored by Junio C Hamano on 21 December 2011, 19:42:44 UTC, committed by Junio C Hamano on 21 December 2011, 19:42:44 UTC
* cn/maint-lf-to-crlf-filter:
  lf_to_crlf_filter(): tell the caller we added "\n" when draining
  convert: track state in LF-to-CRLF filter
2 parent s 1a7bd4f + 87afe9a
Raw File
check_bindir
#!/bin/sh
bindir="$1"
gitexecdir="$2"
gitcmd="$3"
if test "$bindir" != "$gitexecdir" -a -x "$gitcmd"
then
	echo
	echo "!! You have installed git-* commands to new gitexecdir."
	echo "!! Old version git-* commands still remain in bindir."
	echo "!! Mixing two versions of Git will lead to problems."
	echo "!! Please remove old version commands in bindir now."
	echo
fi
back to top