From a34c8f6918c291275ded2b6fd9b94ac91722ded2 Mon Sep 17 00:00:00 2001 From: Felix Fietkau Date: Wed, 30 Oct 2013 11:50:39 +0100 Subject: [PATCH] jshn: refactor _jshn_append to require fewer evals Signed-off-by: Felix Fietkau --- sh/jshn.sh | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/sh/jshn.sh b/sh/jshn.sh index a324c54..9e7f444 100644 --- a/sh/jshn.sh +++ b/sh/jshn.sh @@ -22,12 +22,9 @@ __jshn_raw_append() { _jshn_append() { # var=$1 - # value=$2 - # sep=$3 - local __old_val - - _json_get_var __old_val "$1" - _json_set_var "$1" "${__old_val:+$__old_val${3:- }}$2" + local _a_value="$2" + local _a_sep="${3:- }" + eval "${JSON_PREFIX}$1=\"\${${JSON_PREFIX}$1:+\${${JSON_PREFIX}$1}\${_a_value:+\$_a_sep}}\$_a_value\"" } _json_export() { -- 2.11.0