aboutsummaryrefslogtreecommitdiff
path: root/lib/util.bash
diff options
context:
space:
mode:
authorPatrick Spek <p.spek@tyil.nl>2024-01-04 11:39:09 +0100
committerPatrick Spek <p.spek@tyil.nl>2024-04-02 09:20:43 +0200
commitf3008bb0a8a8d8e8764dde54a05451331c4df85f (patch)
tree43125b949b19fe607d37609f2067486dfdf2bd77 /lib/util.bash
parentede14b18242b04226f125af13f12807fb838242e (diff)
Fix values with = being used for templating
Diffstat (limited to 'lib/util.bash')
-rw-r--r--lib/util.bash8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/util.bash b/lib/util.bash
index 7bc8a6d..ad84247 100644
--- a/lib/util.bash
+++ b/lib/util.bash
@@ -162,18 +162,18 @@ file_template()
do
debug "bashtard/template" "Adding $kv to sedfile at $sedfile"
- key="$(awk -F= '{ print $1 }' <<< "$kv")"
+ key="$(cut -d'=' -f -1 <<< "$kv")"
if [[ -z "$key" ]]
then
- crit "bashtard/template" "Empty key in '$kv' while rendering $file?"
+ crit "bashtard/template" "Empty key in '$kv' while rendering $file"
fi
- value="$(awk -F= '{ print $NF }' <<< "$kv")"
+ value="$(cut -d'=' -f 2- <<< "$kv")"
if [[ -z "$value" ]]
then
- crit "bashtard/template" "Empty key in '$kv' while rendering $file?"
+ crit "bashtard/template" "Empty key in '$kv' while rendering $file"
fi
# shellcheck disable=SC2016