Skip to content

Commit

Permalink
remove redundant double quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
codingkarthik committed Jul 16, 2024
1 parent 87a7267 commit 51c35b4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/registry-updates.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,11 @@ jobs:
OUTPUT: ${{ toJson(steps.changed-files.outputs) }}
run: |
echo "**************"
echo "$ADDED_FILES" | jq .
echo $ADDED_FILES | jq .
echo "**************"
echo $MODIFIED_FILES" | jq .
echo $MODIFIED_FILES | jq .
echo "**************"
echo "$DELETED_FILES" | jq .
echo $DELETED_FILES | jq .
echo "**************"
Expand Down

0 comments on commit 51c35b4

Please sign in to comment.