You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Previously, project.findProjectsUnderPath() searched for projects and subprojects under the given path. The problem with
this is that project.findSubprojects() uses project.findProjectsUnderPath() to detect subprojects, which resulted in
subproject duplicates. Making the project and subproject discovery distinct steps fixes this and also makes the code
easier to follow.
// findProjectsUnderPath finds projects of the given type and subprojects of those projects. It returns a slice containing the definitions of all found projects.
91
+
// findProjectsUnderPath finds projects of the given type under the given path. It returns a slice containing the definitions of all found projects.
0 commit comments