mirror of
				https://github.com/bspeice/libcvautomation
				synced 2025-11-03 18:00:43 -05:00 
			
		
		
		
	Fix an issue where not quoting a variable caused inconsistency
This commit is contained in:
		@ -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"
 | 
				
			||||||
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user