We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2ff3538 commit 3af0e67Copy full SHA for 3af0e67
Doit
@@ -1,6 +1,6 @@
1
#!/bin/sh
2
3
-: ${J=-j2}
+: ${J=-j4}
4
force=
5
while case "$1" in
6
-pedantic) M=$1 ;;
@@ -50,12 +50,20 @@ do
50
echo "** $branch" &&
51
git checkout $branch &&
52
Meta/Make $M -- $J all &&
53
- Meta/Make $M -- test &&
+ Meta/Make $M -- $J test &&
54
Meta/Make $M -- install &&
55
+ case "$branch" in
56
+ master | maint | next )
57
+ Meta/Make $M -- doc
58
+ ;;
59
+ jch )
60
+ Meta/Make $M -- doc install-doc
61
62
+ *)
63
+ : ;;
64
+ esac &&
65
Meta/Make clean || exit $?
66
67
done >./:all.log 3>&2 2>&1
68
69
git checkout master
-
0 commit comments