Update Dothem to build if jch and next are different

This commit is contained in:
Junio C Hamano 2009-03-12 16:05:56 -07:00
parent fa879484d9
commit 11ac3c74fd

8
Dothem
View File

@ -54,7 +54,13 @@ do
(
case "$branch, $branches " in
jch,*' next '*)
dotest= ;;
if git diff --quiet --exit-code jch next
then
dotest=
else
dotest=test
fi
;;
*)
dotest=test ;;
esac