Staging
v0.5.1
Revision 041bc65923e13313ca1b77681c3b2950b5e0a163 authored by Jonathan Nieder on 19 April 2020, 23:28:57 UTC, committed by Jonathan Nieder on 19 April 2020, 23:28:57 UTC
This merges up the security fix from v2.17.5.

Signed-off-by: Jonathan Nieder <jrnieder@gmail.com>
2 parent s d1259ce + 76b54ee
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