]> git.ipfire.org Git - thirdparty/git.git/blame - check_bindir
t4034: abstract away SHA-1-specific constants
[thirdparty/git.git] / check_bindir
CommitLineData
f28ac70f
NTND
1#!/bin/sh
2bindir="$1"
3gitexecdir="$2"
4gitcmd="$3"
4eaeb326 5if test "$bindir" != "$gitexecdir" && test -x "$gitcmd"
f28ac70f
NTND
6then
7 echo
8 echo "!! You have installed git-* commands to new gitexecdir."
9 echo "!! Old version git-* commands still remain in bindir."
10 echo "!! Mixing two versions of Git will lead to problems."
11 echo "!! Please remove old version commands in bindir now."
12 echo
13fi