mirror of
https://github.com/gaurav-nelson/github-action-markdown-link-check.git
synced 2024-11-25 19:13:43 +03:00
Merge pull request #46 from gaurav-nelson/revert-quiet
Revert "Cleanup output for -q option"
This commit is contained in:
commit
1a12c4c839
@ -28,54 +28,23 @@ echo -e "${BLUE}CHECK_MODIFIED_FILES: $6${NC}"
|
||||
echo -e "${BLUE}FILE_EXTENSION: $8${NC}"
|
||||
|
||||
check_errors () {
|
||||
if [ -e error.txt ] ; then
|
||||
if [ "$USE_QUIET_MODE" = "yes" ]; then
|
||||
# Even with -q option markdown-link-check shows all processed files
|
||||
# the following logic cleans the output to only show files with errors.
|
||||
touch output.txt
|
||||
PREVIOUS_LINE=""
|
||||
ERROR_FILE="error.txt"
|
||||
while IFS= read -r LINE
|
||||
do
|
||||
if [[ $LINE = *"FILE"* ]]; then
|
||||
PREVIOUS_LINE=$LINE
|
||||
if [[ $(tail -1 output.txt) != *FILE* ]]; then
|
||||
echo -e "\n" >> output.txt
|
||||
echo "$LINE" >> output.txt
|
||||
fi
|
||||
elif [[ $LINE = *"[✖]"* ]] && [[ $PREVIOUS_LINE = *"FILE"* ]]; then
|
||||
echo "$LINE" >> output.txt
|
||||
else
|
||||
PREVIOUS_LINE=""
|
||||
fi
|
||||
|
||||
done < "$ERROR_FILE"
|
||||
fi
|
||||
|
||||
if grep -q "ERROR:" error.txt; then
|
||||
echo -e "${YELLOW}=========================> MARKDOWN LINK CHECK <=========================${NC}"
|
||||
if [ "$USE_QUIET_MODE" = "yes" ]; then
|
||||
if [[ $(tail -1 output.txt) = *FILE* ]]; then
|
||||
sed '$d' output.txt
|
||||
else
|
||||
cat output.txt
|
||||
fi
|
||||
else
|
||||
cat error.txt
|
||||
fi
|
||||
printf "\n"
|
||||
echo -e "${YELLOW}=========================================================================${NC}"
|
||||
exit 113
|
||||
else
|
||||
echo -e "${YELLOW}=========================> MARKDOWN LINK CHECK <=========================${NC}"
|
||||
printf "\n"
|
||||
echo -e "${GREEN}[✔] All links are good!${NC}"
|
||||
printf "\n"
|
||||
echo -e "${YELLOW}=========================================================================${NC}"
|
||||
fi
|
||||
if [ -e error.txt ] ; then
|
||||
if grep -q "ERROR:" error.txt; then
|
||||
echo -e "${YELLOW}=========================> MARKDOWN LINK CHECK <=========================${NC}"
|
||||
cat error.txt
|
||||
printf "\n"
|
||||
echo -e "${YELLOW}=========================================================================${NC}"
|
||||
exit 113
|
||||
else
|
||||
echo -e "${GREEN}All good!${NC}"
|
||||
echo -e "${YELLOW}=========================> MARKDOWN LINK CHECK <=========================${NC}"
|
||||
printf "\n"
|
||||
echo -e "${GREEN}[✔] All links are good!${NC}"
|
||||
printf "\n"
|
||||
echo -e "${YELLOW}=========================================================================${NC}"
|
||||
fi
|
||||
else
|
||||
echo -e "${GREEN}All good!${NC}"
|
||||
fi
|
||||
}
|
||||
|
||||
if [ "$CHECK_MODIFIED_FILES" = "yes" ]; then
|
||||
|
Loading…
Reference in New Issue
Block a user