Files
airflow/.github/workflows
Kaxil Naik aade25537b Fix registry build failure when logos directory is empty (#63767)
extract_metadata.py unconditionally creates dev/registry/logos/ even
when no logos are found (e.g. incremental build for a provider without
logos). The workflow's `if [ -d ... ]` check passes for the empty
directory, then `cp -r logos/*` fails because the glob doesn't expand.

Fix both sides:
- Workflow: check directory is non-empty before glob-based cp
- extract_metadata.py: create logo directories lazily, only when a
  logo is actually found
2026-03-17 00:31:01 +00:00
..