Skip to content

Commit

Permalink
Updated tools verification commands
Browse files Browse the repository at this point in the history
  • Loading branch information
bhanu-lab committed Dec 29, 2024
1 parent e9aa623 commit 2a8cc28
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/validate-macsetup.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
fi
echo "folder and file exists"
cat $macsetup_dir/tools.json
tools=$(jq -c '.[]' "$macsetup_dir/tools.json" || { echo "Failed to parse tools.json"; exit 1; })
tools=$(cat $macsetup_dir/tools.json | jq -c '.[]')
for tool in $tools; do
name=$(echo "$tool" | jq -r '.name')
verify_command=$(echo "$tool" | jq -r '.verify_command')
Expand Down

0 comments on commit 2a8cc28

Please sign in to comment.