aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
Diffstat (limited to 'Library')
-rwxr-xr-xLibrary/Contributions/examples/brew-man6
1 files changed, 3 insertions, 3 deletions
diff --git a/Library/Contributions/examples/brew-man b/Library/Contributions/examples/brew-man
index a017d9206..8afe2029d 100755
--- a/Library/Contributions/examples/brew-man
+++ b/Library/Contributions/examples/brew-man
@@ -45,7 +45,7 @@ do
ronn --roff --pipe --organization='Homebrew' --manual='brew' $i > $target_file
done
-test "$1" = '--verbose' || \
-test "$1" = '-v' && {
+if test "$1" = '--verbose' || test "$1" = '-v'
+then
man brew
-}
+fi