chore: 🔧 Update files
This commit is contained in:
parent
d722251161
commit
d89dce4bb5
1 changed files with 2 additions and 2 deletions
|
|
@ -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}"
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue