Staging
v0.5.1
Revision ab8f4f5d73caaf2713346b456de095df690e8cf5 authored by Alexander Shopov on 23 February 2019, 16:39:07 UTC, committed by Alexander Shopov on 23 February 2019, 21:29:23 UTC
Signed-off-by: Alexander Shopov <ash@kambanaria.org>
1 parent e7bc80b
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