mirror of
				https://github.com/searxng/searxng
				synced 2024-01-01 19:24:07 +01:00 
			
		
		
		
	[fix] utils/searx.sh - Double quote to prevent globbing
Fix issues reported by `make test.sh` Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
This commit is contained in:
		
							parent
							
								
									3755cf2eba
								
							
						
					
					
						commit
						f9b05a6c44
					
				
					 1 changed files with 2 additions and 2 deletions
				
			
		|  | @ -418,9 +418,9 @@ install_settings() { | |||
|         err_msg "you have to install searx first" | ||||
|         exit 42 | ||||
|     fi | ||||
|     mkdir -p "$(dirname ${SEARX_SETTINGS_PATH})" | ||||
|     mkdir -p "$(dirname "${SEARX_SETTINGS_PATH}")" | ||||
| 
 | ||||
|     if [[ ! -f ${SEARX_SETTINGS_PATH} ]]; then | ||||
|     if [[ ! -f "${SEARX_SETTINGS_PATH}" ]]; then | ||||
|         info_msg "install settings ${SEARX_SETTINGS_TEMPLATE}" | ||||
|         info_msg "  --> ${SEARX_SETTINGS_PATH}" | ||||
|         cp "${SEARX_SETTINGS_TEMPLATE}" "${SEARX_SETTINGS_PATH}" | ||||
|  |  | |||
		Loading…
	
	Add table
		
		Reference in a new issue
	
	 Markus Heiser
						Markus Heiser