Browse Source

[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>
Markus Heiser 4 years ago
parent
commit
f9b05a6c44
1 changed files with 2 additions and 2 deletions
  1. 2 2
      utils/searx.sh

+ 2 - 2
utils/searx.sh

@@ -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}"