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 #86 from TriplEight/38_newer_mlc_version
update dep version
This commit is contained in:
commit
7481451f70
@ -8,7 +8,7 @@ YELLOW='\033[0;33m'
|
||||
BLUE='\033[0;34m'
|
||||
RED='\033[0;31m'
|
||||
|
||||
npm i -g markdown-link-check@3.8.3
|
||||
npm i -g markdown-link-check@3.8.5
|
||||
|
||||
declare -a FIND_CALL
|
||||
declare -a COMMAND_DIRS COMMAND_FILES
|
||||
@ -73,7 +73,7 @@ handle_files () {
|
||||
echo -e "${RED}ERROR [✖] Can't find the file: ${YELLOW}${FILELIST[index]}${NC}"
|
||||
exit 2
|
||||
fi
|
||||
if [ $index == 0 ]; then
|
||||
if [ "$index" == 0 ]; then
|
||||
COMMAND_FILES+=("-wholename ${FILELIST[index]}")
|
||||
else
|
||||
COMMAND_FILES+=("-o -wholename ${FILELIST[index]}")
|
||||
@ -125,9 +125,9 @@ check_additional_files () {
|
||||
|
||||
if [ -n "$FILES" ]; then
|
||||
if [ "$MAX_DEPTH" -ne -1 ]; then
|
||||
FIND_CALL=('find' '.' '-type' 'f' '(' ${FILES} ')' '-not' '-path' './node_modules/*' '-maxdepth' "${MAX_DEPTH}" '-exec' 'markdown-link-check' '{}')
|
||||
FIND_CALL=('find' '.' '-type' 'f' '(' "${FILES}" ')' '-not' '-path' './node_modules/*' '-maxdepth' "${MAX_DEPTH}" '-exec' 'markdown-link-check' '{}')
|
||||
else
|
||||
FIND_CALL=('find' '.' '-type' 'f' '(' ${FILES} ')' '-not' '-path' './node_modules/*' '-exec' 'markdown-link-check' '{}')
|
||||
FIND_CALL=('find' '.' '-type' 'f' '(' "${FILES}" ')' '-not' '-path' './node_modules/*' '-exec' 'markdown-link-check' '{}')
|
||||
fi
|
||||
|
||||
add_options
|
||||
@ -182,9 +182,9 @@ if [ "$CHECK_MODIFIED_FILES" = "yes" ]; then
|
||||
else
|
||||
|
||||
if [ "$5" -ne -1 ]; then
|
||||
FIND_CALL=('find' ${FOLDERS} '-name' '*'"${FILE_EXTENSION}" '-not' '-path' './node_modules/*' '-maxdepth' "${MAX_DEPTH}" '-exec' 'markdown-link-check' '{}')
|
||||
FIND_CALL=('find' "${FOLDERS}" '-name' '*'"${FILE_EXTENSION}" '-not' '-path' './node_modules/*' '-maxdepth' "${MAX_DEPTH}" '-exec' 'markdown-link-check' '{}')
|
||||
else
|
||||
FIND_CALL=('find' ${FOLDERS} '-name' '*'"${FILE_EXTENSION}" '-not' '-path' './node_modules/*' '-exec' 'markdown-link-check' '{}')
|
||||
FIND_CALL=('find' "${FOLDERS}" '-name' '*'"${FILE_EXTENSION}" '-not' '-path' './node_modules/*' '-exec' 'markdown-link-check' '{}')
|
||||
fi
|
||||
|
||||
add_options
|
||||
|
@ -7,7 +7,11 @@ www.google.com
|
||||
[This is a broken link](https://www.exampleexample.cox)
|
||||
<!-- markdown-link-check-disable-next-line -->
|
||||
[This is another broken link](http://ignored-domain.com) but its ignored using a
|
||||
configuration file.
|
||||
configuration file.
|
||||
|
||||
This is to test URLencoding.
|
||||
<https://en.wikipedia.org/wiki/Glob_%28programming%29>
|
||||
<https://www.google.com/?q=url%20with%20a%20space>
|
||||
|
||||
### Alpha
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user