summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAaron Ball <nullspoon@oper.io>2018-02-12 17:53:51 -0700
committerAaron Ball <nullspoon@oper.io>2018-02-12 17:53:51 -0700
commit629cc3bb9f858565f76d76315986c952974eae0b (patch)
treee41d90f7ab00c97479060f023c7ae9acba212203
parent1990d031769abaaffe08be3658c8be08ec8d7c01 (diff)
downloadpkgself-629cc3bb9f858565f76d76315986c952974eae0b.tar.gz
pkgself-629cc3bb9f858565f76d76315986c952974eae0b.tar.xz
lib template: Removed debugging output
-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