mirror of
https://github.com/bspeice/libcvautomation
synced 2025-04-21 00:41:29 -04:00
Fix an issue where not quoting a variable caused inconsistency
This commit is contained in:
parent
3ffa96a5d1
commit
cb1d50555f
@ -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"
|
||||||
|
Loading…
Reference in New Issue
Block a user