From 5ba0fc01a7cc1e09e3a3e147ba66d048453b8699 Mon Sep 17 00:00:00 2001 From: Jonathan Miller <230051081+jmiller-moko@users.noreply.github.com> Date: Sat, 27 Dec 2025 02:02:10 -0600 Subject: [PATCH] Update repo_health.yml --- .github/workflows/repo_health.yml | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/.github/workflows/repo_health.yml b/.github/workflows/repo_health.yml index ac90fb0..ed9bff3 100644 --- a/.github/workflows/repo_health.yml +++ b/.github/workflows/repo_health.yml @@ -298,12 +298,9 @@ jobs: command -v php >/dev/null 2>&1 && tool_status+=("php") || true command -v xmllint >/dev/null 2>&1 && tool_status+=("xmllint") || true - export MISSING_DIRS="$(printf '%s -' "${missing_dirs[@]:-}")" - export MISSING_FILES="$(printf '%s -' "${missing_files[@]:-}")" - export LEGACY_PRESENT="$(printf '%s -' "${legacy_present[@]:-}")" + export MISSING_DIRS="$(printf '%s\\n' "${missing_dirs[@]:-}")" + export MISSING_FILES="$(printf '%s\\n' "${missing_files[@]:-}")" + export LEGACY_PRESENT="$(printf '%s\\n' "${legacy_present[@]:-}")" export TOOLS="${tool_status[*]:-}" report_json="$(python3 - <<'PY'