summaryrefslogtreecommitdiff
path: root/libinstall/template.sh
diff options
context:
space:
mode:
Diffstat (limited to 'libinstall/template.sh')
-rw-r--r--libinstall/template.sh2
1 files changed, 0 insertions, 2 deletions
diff --git a/libinstall/template.sh b/libinstall/template.sh
index 7254d8b..35b79b6 100644
--- a/libinstall/template.sh
+++ b/libinstall/template.sh
@@ -33,7 +33,6 @@ template() {
install -D "${_src}" "${_dest}"
for _var in ${_vars[@]}; do
- printf "Parsing variable %s\n" "${var}"
_varref="$(printf ${_var} | cut -d ' ' -f 2)"
if [ -z "${!_varref:-}" ]; then
printf "Template %s variable '%s' is not set. Skipping.\n" \
@@ -42,7 +41,6 @@ template() {
continue
fi
- echo sed -i "s${delim}{{ ${_varref} }}${delim}${!_varref}${delim}g" "${_dest}"
sed -i "s${delim}{{ ${_varref} }}${delim}${!_varref}${delim}g" "${_dest}"
done

Generated by cgit