Skip to content

Commit acaa5fb

Browse files
gregmagolanalexeagle
authored andcommitted
fix: clean_nested_workspaces.sh
1 parent 7d1fbd9 commit acaa5fb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/clean_nested_workspaces.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ echo_and_run() { echo "+ $@" ; "$@" ; }
1010
readonly workspaceRoots=("e2e" "examples" "packages")
1111
for workspaceRoot in ${workspaceRoots[@]} ; do
1212
(
13-
readonly workspaceFiles=($(find ./${workspaceRoot} -type f -name WORKSPACE -prune -maxdepth 2))
13+
readonly workspaceFiles=($(find ./${workspaceRoot} -type f -name WORKSPACE -prune -maxdepth 3))
1414
for workspaceFile in ${workspaceFiles[@]} ; do
1515
(
1616
readonly workspaceDir=$(dirname ${workspaceFile})

0 commit comments

Comments
 (0)