From 7313628cc6902de58357d2cf64b41c2c037a7828 Mon Sep 17 00:00:00 2001 From: james-portman-contino <52815991+james-portman-contino@users.noreply.github.com> Date: Thu, 8 Aug 2019 08:50:28 +0100 Subject: [PATCH] Stop colorizing the JSON output If using a terminal then jq prints out JSON with color. I suggest color should either be disabled always or with some other flag (more complicated) jq flag: -M monochrome (don't colorize JSON); --- include/outputs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/outputs b/include/outputs index a343a4ae..6e379d0f 100644 --- a/include/outputs +++ b/include/outputs @@ -27,7 +27,7 @@ textPass(){ else REPREGION=$REGION fi - jq -c \ + jq -M -c \ --arg PROFILE "$PROFILE" \ --arg ACCOUNT_NUM "$ACCOUNT_NUM" \ --arg TITLE_TEXT "$TITLE_TEXT" \