Revision dcf07e275a5b2c28729a2d7ded2fc2bb9a55a19b authored by Changwoo Ryu on 11 February 2017, 02:29:32 UTC, committed by Changwoo Ryu on 11 February 2017, 02:32:27 UTC
Signed-off-by: Changwoo Ryu <cwryu@debian.org>
1 parent 673bfad
Raw File
check_bindir
#!/bin/sh
bindir="$1"
gitexecdir="$2"
gitcmd="$3"
if test "$bindir" != "$gitexecdir" && test -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