Skip to content

Commit

Permalink
fix: clean_nested_workspaces.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
gregmagolan authored and alexeagle committed Oct 4, 2019
1 parent 7d1fbd9 commit acaa5fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/clean_nested_workspaces.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ echo_and_run() { echo "+ $@" ; "$@" ; }
readonly workspaceRoots=("e2e" "examples" "packages")
for workspaceRoot in ${workspaceRoots[@]} ; do
(
readonly workspaceFiles=($(find ./${workspaceRoot} -type f -name WORKSPACE -prune -maxdepth 2))
readonly workspaceFiles=($(find ./${workspaceRoot} -type f -name WORKSPACE -prune -maxdepth 3))
for workspaceFile in ${workspaceFiles[@]} ; do
(
readonly workspaceDir=$(dirname ${workspaceFile})
Expand Down

0 comments on commit acaa5fb

Please sign in to comment.