File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
.github/workflows/scripts Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -21,15 +21,15 @@ fixmes=""
2121todos=" "
2222
2323# Search for FIXME and TODO annotations in all files in the current directory:
24- for file in $( find lib/node_modules/@stdlib -type f) ; do
25- fixme=$( grep -i -n " FIXME:" $file )
24+ for file in $( find . -type f) ; do
25+ fixme=$( grep -i -n " FIXME:" $file ) || true
2626 if [ -n " $fixme " ]; then
2727 lineNumber=$( echo $fixme | cut -d " :" -f 1)
2828 lineContent=$( echo $fixme | cut -d " :" -f 2-)
2929 fixmes=" $fixmes
3030- [ ] [$file ](https://github.com/stdlib-js/stdlib/blob/develop/$file #L$lineNumber ): $lineContent "
3131 fi
32- todo=$( grep -i -n " TODO:" $file )
32+ todo=$( grep -i -n " TODO:" $file ) || true
3333 if [ -n " $todo " ]; then
3434 lineNumber=$( echo $todo | cut -d " :" -f 1)
3535 lineContent=$( echo $todo | cut -d " :" -f 2-)
You can’t perform that action at this time.
0 commit comments