Fix for bug 136227: Corrects syntax error in bash script.

Patch by David Kilzer <ddkilzer@theracingworld.com>.
2xr=afranke
This commit is contained in:
myk%mozilla.org 2002-04-12 21:15:45 +00:00
parent 651a23264b
commit ba6d753340

View File

@ -4,7 +4,7 @@ TEST_VERBOSE=0
PART1='use Test::Harness qw(&runtests $verbose); $verbose='
PART2='; runtests @ARGV;'
for f in $*; do
if [ $f == "--verbose" ] ; then
if [ "$f" = "--verbose" ] ; then
TEST_VERBOSE=1
fi
done