From 749f8ff156638ba5f24b7ccaf229ff4b669aee04 Mon Sep 17 00:00:00 2001 From: Zaiming Shi Date: Mon, 22 Mar 2021 22:34:58 +0100 Subject: [PATCH] chore(build): exclude broken symlinks in find-apps.sh --- scripts/find-apps.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/find-apps.sh b/scripts/find-apps.sh index 7a7da4964..82743dd20 100755 --- a/scripts/find-apps.sh +++ b/scripts/find-apps.sh @@ -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