diff options
author | Markus Heiser <markus.heiser@darmarit.de> | 2021-04-28 16:29:03 +0200 |
---|---|---|
committer | Markus Heiser <markus.heiser@darmarit.de> | 2021-04-28 16:29:03 +0200 |
commit | 666bf1d32b7ce53133025c5471746e494deeeade (patch) | |
tree | 37ab8228babe1cdb76c6c7510e10486ff2b0461d | |
parent | d9ffb090111f46cdc884b21b4bad81d7b6d87cbc (diff) | |
download | searxng-666bf1d32b7ce53133025c5471746e494deeeade.tar.gz searxng-666bf1d32b7ce53133025c5471746e494deeeade.zip |
[fix] typo: 'interactiv' --> 'interactive'
Reported-by: https://github.com/searxng/searxng/pull/38#pullrequestreview-646940531
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
-rwxr-xr-x | utils/filtron.sh | 4 | ||||
-rwxr-xr-x | utils/lib.sh | 4 | ||||
-rwxr-xr-x | utils/searx.sh | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/utils/filtron.sh b/utils/filtron.sh index 958dcc05c..5680811ea 100755 --- a/utils/filtron.sh +++ b/utils/filtron.sh @@ -321,7 +321,7 @@ install_rules() { choose_one action "What should happen to the rules file? " \ "keep configuration unchanged" \ "use origin rules" \ - "start interactiv shell" + "start interactive shell" case $action in "keep configuration unchanged") info_msg "leave rules file unchanged" @@ -331,7 +331,7 @@ install_rules() { info_msg "install origin rules" cp "${FILTRON_RULES_TEMPLATE}" "${FILTRON_RULES}" ;; - "start interactiv shell") + "start interactive shell") backup_file "${FILTRON_RULES}" echo -e "// exit with [${_BCyan}CTRL-D${_creset}]" sudo -H -i diff --git a/utils/lib.sh b/utils/lib.sh index d1781a71f..8867bfe8e 100755 --- a/utils/lib.sh +++ b/utils/lib.sh @@ -461,7 +461,7 @@ install_template() { choose_one _reply "choose next step with file $dst" \ "replace file" \ "leave file unchanged" \ - "interactiv shell" \ + "interactive shell" \ "diff files" case $_reply in @@ -474,7 +474,7 @@ install_template() { "leave file unchanged") break ;; - "interactiv shell") + "interactive shell") echo -e "// edit ${_Red}${dst}${_creset} to your needs" echo -e "// exit with [${_BCyan}CTRL-D${_creset}]" sudo -H -u "${owner}" -i diff --git a/utils/searx.sh b/utils/searx.sh index 2d2358344..a5345c075 100755 --- a/utils/searx.sh +++ b/utils/searx.sh @@ -436,7 +436,7 @@ install_settings() { choose_one action "What should happen to the settings file? " \ "keep configuration unchanged" \ "use origin settings" \ - "start interactiv shell" + "start interactive shell" case $action in "keep configuration unchanged") info_msg "leave settings file unchanged" @@ -446,7 +446,7 @@ install_settings() { info_msg "install origin settings" cp "${SEARX_SETTINGS_TEMPLATE}" "${SEARX_SETTINGS_PATH}" ;; - "start interactiv shell") + "start interactive shell") backup_file "${SEARX_SETTINGS_PATH}" echo -e "// exit with [${_BCyan}CTRL-D${_creset}]" sudo -H -i |