Skip to content

Commit 52a71a3

Browse files
committed
Updated github action verification pipeline
1 parent 808d42a commit 52a71a3

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/validate-macsetup.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,8 @@ jobs:
4141
- name: Validate installation
4242
run: |
4343
# Read validation commands from config/tools.json and run them
44-
tools=$(jq -c '.[]' config/tools.json)
44+
macsetup_dir="$HOME/.macsetup"
45+
tools=$(jq -c '.[]?' "$macsetup_dir/tools.json")
4546
for tool in $tools; do
4647
name=$(echo "$tool" | jq -r '.name')
4748
verify_command=$(echo "$tool" | jq -r '.verify_command')

0 commit comments

Comments
 (0)