Skip to content

Commit

Permalink
Tools/scripts: limit scope the script searches
Browse files Browse the repository at this point in the history
The script now searches on limited depth and ignores distfiles folder.

Reported by:	diizzy
  • Loading branch information
mfechner committed Mar 28, 2022
1 parent 25c9526 commit 7608967
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Tools/scripts/search_lib_depends_and_bump.sh
Expand Up @@ -33,7 +33,7 @@ PORT_TO_SEARCH=${1}
BASEDIR=$(pwd)
# Get a list of all ports
echo "Prepare a list of all ports"
ports=$(find . -name Makefile ! -path "./Tools/* | sort")
ports=`find . -name Makefile -maxdepth 3 -not \( -path "./distfiles/*" -prune \) -not \( -path "./Tools/*" -prune \) -print | sort`
echo "done."
echo

Expand Down

0 comments on commit 7608967

Please sign in to comment.