1#!/bin/sh
2bindir="$1"
3gitexecdir="$2"
4gitcmd="$3"
5if test "$bindir" != "$gitexecdir" && test -x "$gitcmd"
6then
7echo
8echo "!! You have installed git-* commands to new gitexecdir."
9echo "!! Old version git-* commands still remain in bindir."
10echo "!! Mixing two versions of Git will lead to problems."
11echo "!! Please remove old version commands in bindir now."
12echo
13fi