chore(build): exclude broken symlinks in find-apps.sh

This commit is contained in:
Zaiming Shi 2021-03-22 22:34:58 +01:00 committed by turtleDeng
parent dcfde3861f
commit 749f8ff156
1 changed files with 1 additions and 1 deletions

View File

@ -20,4 +20,4 @@ fi
## find directories in lib-extra
find_app 'lib-extra'
## find symlinks in lib-extra
find 'lib-extra/' -mindepth 1 -maxdepth 1 -type l
find 'lib-extra/' -mindepth 1 -maxdepth 1 -type l -exec test -e {} \; -print