From de3becfe2d41787e37a078039e69e523100c9bde Mon Sep 17 00:00:00 2001 From: Gerald Pinder Date: Mon, 25 Nov 2024 14:11:12 -0500 Subject: [PATCH] fix: Make sure jq prints raw values --- scripts/exports.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/exports.sh b/scripts/exports.sh index e50298e..77d72c4 100644 --- a/scripts/exports.sh +++ b/scripts/exports.sh @@ -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() {