Skip to content

Commit

Permalink
add newline
Browse files Browse the repository at this point in the history
  • Loading branch information
CM000n committed Dec 14, 2023
1 parent 87ddfab commit 8eb9195
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/check-versions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,9 @@ jobs:
fi
pyproject_dependencies=$(poetry show --only main | awk -F' ' '{print $1}')
echo "pyproject.toml dependecies: $pyproject_dependencies"
echo "pyproject.toml dependecies: \n$pyproject_dependencies"
manifest_dependencies=$(jq -r '.requirements[]' custom_components/qss/manifest.json)
echo "manifest.json dependecies: $manifest_dependencies"
echo "manifest.json dependecies: \n$manifest_dependencies"
for dependency in $pyproject_dependencies; do
matching_dependency=$(echo "$manifest_dependencies" | grep "$dependency")
if [[ -z "$matching_dependency" ]]; then
Expand Down

0 comments on commit 8eb9195

Please sign in to comment.