Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Empty file modified .github/actions/review-checklists-lint/entrypoint.sh
100644 → 100755
Empty file.
Empty file modified scripts/checklist_arg2policy.sh
100644 → 100755
Empty file.
6 changes: 6 additions & 0 deletions scripts/checklist_graph.sh
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -170,6 +170,12 @@ else
checklist_url="${base_url}checklists/${technology}_checklist.en.json"
if [[ "$debug" == "yes" ]]; then echo "DEBUG: Getting checklist from $checklist_url..."; fi
checklist_json=$(curl -s "$checklist_url")
# Check if the downloaded content is valid JSON (not a 404 error page)
if ! echo "$checklist_json" | jq empty 2>/dev/null; then
echo "ERROR: Could not download checklist for technology '$technology'. Please verify the technology parameter is correct."
echo " Run '$0 --list-technologies' to see available technologies."
exit 1
fi
fi

# If in "list_categories" mode, just get the categories part:
Expand Down
Empty file modified scripts/process_checklist.sh
100644 → 100755
Empty file.