Update Dothem to build if jch and next are different
Junio C Hamano committed
Mar 12, 2009 at 16:05 UTC
11ac3c74fd8d565f67d0fae35bba2237f90e481a
1 file changed
+7
-1
Dothem
+7
-1
@@ -54,7 +54,13 @@ do
54
(
55
case "$branch, $branches " in
56
jch,*' next '*)
57
- dotest= ;;
57
+ if git diff --quiet --exit-code jch next
58
+ then
59
+ dotest=
60
+ else
61
+ dotest=test
62
+ fi
63
+ ;;
64
*)
65
dotest=test ;;
66
esac