aboutsummaryrefslogtreecommitdiffstats
path: root/Tools
diff options
context:
space:
mode:
authorMatthias Fechner <mfechner@FreeBSD.org>2024-10-23 09:07:19 +0300
committerMatthias Fechner <mfechner@FreeBSD.org>2024-10-23 10:11:49 +0300
commitcd85daaf918c2e08b98091afe155d5c38e95aacd (patch)
tree997d889fcc55ade86a02e9ecd9c2c21f5fb110b7 /Tools
parent828a1f09fdd5a52ebe3351fcaf98e163da952a14 (diff)
Tools/scripts: search_lib_depends_and_bump.sh ignores now the Templates dir
Diffstat (limited to 'Tools')
-rwxr-xr-xTools/scripts/search_lib_depends_and_bump.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/Tools/scripts/search_lib_depends_and_bump.sh b/Tools/scripts/search_lib_depends_and_bump.sh
index fe443d9c5e11..479fada9bd0c 100755
--- a/Tools/scripts/search_lib_depends_and_bump.sh
+++ b/Tools/scripts/search_lib_depends_and_bump.sh
@@ -4,7 +4,7 @@
# The script will search for this port over the complete directory you are located now
# and will bump all ports using `Tools/scripts/bump-revision.sh`
#
-# Version 0.1
+# Version 0.2
# License: MIT
# Matthias Fechner <mfechner@FreeBSD.org>
@@ -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 -maxdepth 3 -not \( -path "./distfiles/*" -prune \) -not \( -path "./Tools/*" -prune \) -print | sort`
+ports=`find . -name Makefile -maxdepth 3 -not \( -path "./distfiles/*" -prune \) -not \( -path "./Tools/*" -prune \) -not \( -path "./Templates/*" -prune \) -print | sort`
echo "done."
echo