diff --git a/azure-pipelines.yml b/azure-pipelines.yml index eea4b0456..ff18ac073 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -35,5 +35,7 @@ jobs: - script: sudo apt-get install -y jq displayName: 'Install JQ' - - bash: "cat **/*.json | jq" + - bash: | + shopt -s globstar + cat **/*.json | jq '.' displayName: 'Run JQ'