Skip to content

Commit f43915d

Browse files
author
Junio C Hamano
committed
Allow passing -pedantic etc to Meta/Make
1 parent 331938f commit f43915d

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

Doit

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
#!/bin/sh
22

3+
: ${M=''}
34
: ${J=-j2}
45

56
test -z "$(git diff --cached --name-status)" || {
@@ -17,9 +18,9 @@ do
1718
then
1819
echo "** $branch" &&
1920
git checkout $branch &&
20-
Meta/Make -- $J all &&
21-
Meta/Make -- $J $nstall &&
22-
Meta/Make test &&
21+
Meta/Make $M -- $J all &&
22+
Meta/Make $M -- $J $nstall &&
23+
Meta/Make $M -- test &&
2324
Meta/Make clean || exit $?
2425
else
2526
echo "** No $branch"

0 commit comments

Comments
 (0)