Doit: build-test documentation, too.

Junio C Hamano committed Sep 6, 2008 at 23:16 UTC 3af0e6709cd053ae1dad602b02a15e55795b4683
1 file changed +12 -4
Doit
+12 -4
index 632f22e694..f29d051b83 100755 --- 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 - -