fix: Make sure jq prints raw values

This commit is contained in:
Gerald Pinder 2024-11-25 14:11:12 -05:00
parent 20550f22aa
commit de3becfe2d

View file

@ -33,7 +33,7 @@ get_json_array() {
return 1
fi
readarray -t arr < <(echo "$module_config" | jq "$jq_query")
readarray -t arr < <(echo "$module_config" | jq -r "$jq_query")
}
color_string() {