Skip to content

Commit 67b8da7

Browse files
author
Junio C Hamano
committed
Doit: add -noinstall
1 parent 1469eaa commit 67b8da7

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

Doit

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ while case "$1" in
66
-pedantic) M=$1 ;;
77
-force) force=$1 ;;
88
-dash) with_dash=y ;;
9+
-noinstall) install=noinstall ;;
910
*) break ;;
1011
esac
1112
do
@@ -91,7 +92,10 @@ do
9192
*)
9293
: ;;
9394
esac &&
94-
Meta/Make $M -- install &&
95+
{
96+
test z$install = znoinstall ||
97+
Meta/Make $M -- install
98+
} &&
9599
Meta/Make clean || exit $?
96100

97101
git reset --hard

0 commit comments

Comments
 (0)