Skip to content

Commit

Permalink
Add logging and rename variables
Browse files Browse the repository at this point in the history
  • Loading branch information
MGaetan89 committed Feb 29, 2024
1 parent 0a507d9 commit 5366cf5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/tech_radar.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,9 +84,9 @@ jobs:
# Store the dependencies by package manager in specific files
package_managers_count=$(echo $dependencies | jq '. | keys | length')
dependencies_count=$(echo $dependencies | jq '. | reduce .[] as $item (0; . + ($item | length))')
for packageManager in package_managers; do
if [[ $packageManager != "com.github.SRGSSR" ]]; then
echo $dependencies | jq -r ".$packageManager[]" >> .packageManagers/$packageManager
for package_manager in $package_managers; do
if [[ $package_manager != "com.github.SRGSSR" ]]; then
echo $dependencies | jq -r ".$package_manager | .[]" >> .packageManagers/$package_manager
fi
done
Expand Down

0 comments on commit 5366cf5

Please sign in to comment.