Browse Source

fix: [monujo] properly translate bools yaml to json

pull/47/head
Valentin Lab 3 weeks ago
parent
commit
efb2f0679e
  1. 2
      monujo/lib/common

2
monujo/lib/common

@ -71,6 +71,7 @@ export MONUJO_OPTIONS=(
app-strings-language:string
default-language:string
prefer-navigator-language:bool
disable-top-up:bool
)
export MONUJO_OPTIONS_CONCAT=" ${MONUJO_OPTIONS[*]} "
@ -117,6 +118,7 @@ monujo:json-make() {
die "Invalid value for ${WHITE}$key$NORMAL, please use a boolean value."
;;
esac
ytype=bool
;;
*" ${key}:numeric "*)
val=$(e "$val" | shyaml get-value)

Loading…
Cancel
Save