summaryrefslogtreecommitdiff
path: root/utils/lib.sh
diff options
context:
space:
mode:
authorMarkus Heiser <markus.heiser@darmarIT.de>2021-08-22 16:07:37 +0000
committerGitHub <noreply@github.com>2021-08-22 16:07:37 +0000
commit183c856396e00d08c929ec13c80f82cdc4f38c8f (patch)
treea107683384880059b2684ba91ea0c00650658c87 /utils/lib.sh
parent29b40338d6f92d51d8e179b68e526a06e960aceb (diff)
parent8ba4dc26d1a4588043b4c0020f72b6b01c35126a (diff)
Merge pull request #266 from return42/fix-scripts
[fix] utils/searx.sh install settings - do not eval the template
Diffstat (limited to 'utils/lib.sh')
-rwxr-xr-xutils/lib.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/utils/lib.sh b/utils/lib.sh
index f29666226..028450ab4 100755
--- a/utils/lib.sh
+++ b/utils/lib.sh
@@ -437,7 +437,8 @@ install_template() {
if [[ "$do_eval" == "1" ]]; then
template_file="${CACHE}${dst}${variant}"
- info_msg "BUILD template ${template_file}"
+ info_msg "BUILD ${template_file}"
+ info_msg "BUILD using template ${template_origin}"
if [[ -n ${SUDO_USER} ]]; then
sudo -u "${SUDO_USER}" mkdir -p "$(dirname "${template_file}")"
else