From 42abb1e5042640faf4e47d8300d222b0acb8e79d Mon Sep 17 00:00:00 2001 From: clux Date: Wed, 1 Nov 2023 21:54:34 +0000 Subject: [PATCH] do we have rg available on CI? Signed-off-by: clux --- test/yq.test.bats | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/yq.test.bats b/test/yq.test.bats index c611385..5720334 100644 --- a/test/yq.test.bats +++ b/test/yq.test.bats @@ -97,5 +97,5 @@ @test "multidoc-jq-output-to-yaml" { run yq '.[].metadata.labels' -y test/deploy.yaml - echo "$output" && echo "$output" | grep -Pz '\- null\n- null\n- null\n- app: controller\n- app: controller' + echo "$output" && echo "$output" | rg -U '\- null\n- null\n- null\n- app: controller\n- app: controller' }