Fix an issue where not quoting a variable caused inconsistency

This commit is contained in:
Bradlee Speice 2012-07-23 15:59:57 -04:00
parent 3ffa96a5d1
commit cb1d50555f

View File

@ -148,7 +148,7 @@ click_i ()
for x in $@ for x in $@
do do
if [ -n $USE_CENTER ]; then if [ -n "$USE_CENTER" ]; then
center="c" center="c"
else else
center="" center=""
@ -322,12 +322,12 @@ hover_i ()
for x in $@ for x in $@
do do
if [ -n $CENTER ]; then if [ -n "$CENTER" ]; then
center="c" center="c"
else else
center="" center=""
fi fi
if [ -n $USE_SANE_TOLERANCE ]; then if [ -n "$USE_SANE_TOLERANCE" ]; then
TOLERANCE_OPTION="-o" TOLERANCE_OPTION="-o"
else else
TOLERANCE_OPTION="-t" TOLERANCE_OPTION="-t"