]> git.ipfire.org Git - thirdparty/git.git/commitdiff
Doit: build-test documentation, too.
authorJunio C Hamano <gitster@pobox.com>
Sun, 7 Sep 2008 06:16:20 +0000 (23:16 -0700)
committerJunio C Hamano <gitster@pobox.com>
Sun, 7 Sep 2008 06:16:20 +0000 (23:16 -0700)
Doit

diff --git a/Doit b/Doit
index 632f22e6946dc857ad0968aa551bfae6bdb617b9..f29d051b83a4e708eb8ac5d03d67522cb190bc87 100755 (executable)
--- a/Doit
+++ b/Doit
@@ -1,6 +1,6 @@
 #!/bin/sh
 
-: ${J=-j2}
+: ${J=-j4}
 force=
 while  case "$1" in
        -pedantic) M=$1 ;;
@@ -50,12 +50,20 @@ do
        echo "** $branch" &&
        git checkout $branch &&
        Meta/Make $M -- $J all &&
-       Meta/Make $M -- test &&
+       Meta/Make $M -- $J test &&
        Meta/Make $M -- install &&
+       case "$branch" in
+       master | maint | next )
+               Meta/Make $M -- doc
+               ;;
+       jch )
+               Meta/Make $M -- doc install-doc
+               ;;
+       *)
+               : ;;
+       esac &&
        Meta/Make clean || exit $?
 
 done >./:all.log 3>&2 2>&1
 
 git checkout master
-
-