Skip to content

Commit

Permalink
fix(ci): fix jq flag
Browse files Browse the repository at this point in the history
  • Loading branch information
KisaragiEffective committed Apr 13, 2024
1 parent 0219c33 commit 7677df6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/validate-renovate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ jobs:
mv "$OLD" "${OLD}.old.txt"
NEW="$(mktemp)"
mv "$NEW" "${NEW}.new.txt"
jq -rs '.oldConfig' < "$H" > "$OLD"
jq -rs '.newConfig' < "$H" > "$NEW"
jq -r '.oldConfig' < "$H" > "$OLD"
jq -r '.newConfig' < "$H" > "$NEW"
DIFF_TO_BE_REPORTED="$(mktemp)"
mv "$DIFF_TO_BE_REPORTED" "${DIFF_TO_BE_REPORTED}.diff"
Expand Down

0 comments on commit 7677df6

Please sign in to comment.