This commit is contained in:
carlospolop
2025-10-18 00:59:40 +02:00
parent be3fe91da4
commit c16c5de36f

View File

@@ -51,9 +51,7 @@ if ! [ "$SEARCH_IN_FOLDER" ]; then
fi fi
# If no candidates detected, exit quietly # If no candidates detected, exit quietly
if [ -z "$candidates" ]; then if [ "$candidates" ]; then
exit 0
fi
# Iterate candidates and extract interesting data # Iterate candidates and extract interesting data
printf "%s\n" "$candidates" | while read -r svc; do printf "%s\n" "$candidates" | while read -r svc; do
@@ -123,5 +121,6 @@ if ! [ "$SEARCH_IN_FOLDER" ]; then
fi fi
echo "" echo ""
done done
fi
fi fi