Skip to content

Commit

Permalink
what is wrong
Browse files Browse the repository at this point in the history
  • Loading branch information
italopessoa committed Sep 17, 2024
1 parent cd427e5 commit 4f84b00
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/terraform.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -179,14 +179,13 @@ jobs:
- name: "v4"
continue-on-error: true
run: |
vpc_id2=$(echo "{ "name": "John" }" | jq -r '.[] | select(.name == "John") | .name')
echo "$vpc_id2"
echo "{ "name": "John" }" | jq -r '.[] | select(.name == "John") | .name'
- name: "v5"
continue-on-error: true
run: |
vpc_id2=$(echo { "name": "John" } | jq -r '.[] | select(.name == "John") | .name')
echo "$vpc_id2"
echo { "name": "John" } | jq -r '.[] | select(.name == "John") | .name'
Expand Down

0 comments on commit 4f84b00

Please sign in to comment.