Commit 055ae240 authored by myk%mozilla.org's avatar myk%mozilla.org

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

Patch by David Kilzer <ddkilzer@theracingworld.com>. 2xr=afranke
parent 5c0c85df
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment