Skip to content
Merged
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
7 changes: 5 additions & 2 deletions pmoves/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4341,8 +4341,11 @@ docs-reconcile-check: ## Check living document freshness (read-only, CI-safe)
docs-reconcile-json: ## Living document freshness report (JSON output)
@$(PYTHON) tools/docs_reconcile.py --check --json $(ARGS)

.PHONY: docs-render-living
docs-render-living: ## Render living docs dashboard via a2ui-renderer (requires creator profile)
# Renamed from docs-render-living: it silently shadowed the Lane 2228
# registry iterator (make keeps the LAST single-colon recipe) — same
# duplicate-target class as the #2339 fix for juicefs-status et al.
.PHONY: docs-render-living-dashboard
docs-render-living-dashboard: ## Render living docs DASHBOARD via a2ui-renderer (legacy renderer)
Comment thread
POWERFULMOVES marked this conversation as resolved.
Comment thread
POWERFULMOVES marked this conversation as resolved.
@echo "🎨 Rendering living docs dashboard via a2ui-renderer..."
@if ! docker ps --format '{{.Names}}' | grep -q a2ui-renderer; then \
echo "⚠️ a2ui-renderer not running. Start with: make -C pmoves up-a2ui-renderer"; exit 1; \
Expand Down
Loading