From: Felix Fietkau Date: Wed, 30 Oct 2013 10:50:39 +0000 (+0100) Subject: jshn: refactor _jshn_append to require fewer evals X-Git-Url: http://git.archive.openwrt.org/?p=project%2Flibubox.git;a=commitdiff_plain;h=a34c8f6918c291275ded2b6fd9b94ac91722ded2 jshn: refactor _jshn_append to require fewer evals Signed-off-by: Felix Fietkau --- 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() {