Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.openwrt.org/project/libubox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sh/jshn.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/sh/jshn.sh b/sh/jshn.sh
index a15cb00..0f209d3 100644
--- a/sh/jshn.sh
+++ b/sh/jshn.sh
@@ -95,13 +95,13 @@ json_dump() {
json_get_type() {
local dest="$1"
local var="TYPE_${JSON_CUR}_$2"
- eval "[ -n \"\${$var+x}\" ] && export -- \"$dest=\${$var}\""
+ eval "export -- \"$dest=\${$var}\"; [ -n \"\${$var+x}\" ]"
}
json_get_var() {
local dest="$1"
local var="${JSON_CUR}_${2//[^a-zA-Z0-9_]/_}"
- eval "[ -n \"\${$var+x}\" ] && export -- \"$dest=\${$var}\""
+ eval "export -- \"$dest=\${$var}\"; [ -n \"\${$var+x}\" ]"
}
json_get_vars() {