Skip to content

Commit bd07fa2

Browse files
fix(tag_release): correct module path detection in tag_release script
1 parent da1c844 commit bd07fa2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/scripts/tag_release.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ detect_modules_needing_tags() {
8484
echo ""
8585

8686
local all_modules
87-
all_modules=$(find registry -type d -path "*/modules/*" -mindepth 3 -maxdepth 3 | sort -u || echo "")
87+
all_modules=$(find registry -mindepth 3 -maxdepth 3 -type d -path "*/modules/*" | sort -u || echo "")
8888

8989
[ -z "$all_modules" ] && {
9090
echo "❌ No modules found to check"

0 commit comments

Comments
 (0)