diff options
author | Aaron Ball <nullspoon@oper.io> | 2018-02-12 17:53:51 -0700 |
---|---|---|
committer | Aaron Ball <nullspoon@oper.io> | 2018-02-12 17:53:51 -0700 |
commit | 629cc3bb9f858565f76d76315986c952974eae0b (patch) | |
tree | e41d90f7ab00c97479060f023c7ae9acba212203 | |
parent | 1990d031769abaaffe08be3658c8be08ec8d7c01 (diff) | |
download | pkgself-629cc3bb9f858565f76d76315986c952974eae0b.tar.gz pkgself-629cc3bb9f858565f76d76315986c952974eae0b.tar.xz |
lib template: Removed debugging output
-rw-r--r-- | libinstall/template.sh | 2 |
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 |