From 1a168a295bcd03f0b81241f3f4d6b0d7b064b26e Mon Sep 17 00:00:00 2001 From: samuel Date: Wed, 3 May 2023 11:53:49 +0200 Subject: [PATCH] [Dev] Use jq --raw-output option to remove quotes --- src/pipeline.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pipeline.sh b/src/pipeline.sh index 651530b..688ac0e 100755 --- a/src/pipeline.sh +++ b/src/pipeline.sh @@ -272,7 +272,7 @@ main() ( rm --recursive "${rd_pipeline_sock_dir}" # Display response. - echo -e "$(echo "${response}" | jq .msg)" + echo -e "Response from RUNNER:\n$(echo "${response}" | jq --raw-output .msg)" exit "$(echo "${response}" | jq .code)" )