chore: 🔧 Update files

This commit is contained in:
Lilith 2026-01-14 04:21:46 -08:00
parent d722251161
commit d89dce4bb5

View file

@ -79,8 +79,8 @@ FAILED=0
# Find consumers using existing script
CONSUMERS_OUTPUT=$("$SCRIPT_DIR/../analysis/find-consumers.sh" "$PACKAGE_PATH" 2>/dev/null)
# Extract consumer directories from output
CONSUMER_DIRS=$(echo "$CONSUMERS_OUTPUT" | grep -E '^\[REGISTRY\]|^\[PATH\]|^\[LINK\]' | awk '{print $2}')
# Extract consumer directories from output (strip ANSI color codes first)
CONSUMER_DIRS=$(echo "$CONSUMERS_OUTPUT" | sed 's/\x1b\[[0-9;]*m//g' | grep -E '^\[REGISTRY\]|^\[PATH\]|^\[LINK\]' | awk '{print $2}')
if [[ -z "$CONSUMER_DIRS" ]]; then
echo -e "${YELLOW}No consumers found${NC}"