Skip to content

Commit

Permalink
Update internal/project/project.go
Browse files Browse the repository at this point in the history
Co-authored-by: MatteoPologruto <109663225+MatteoPologruto@users.noreply.github.com>
  • Loading branch information
umbynos and MatteoPologruto authored Jul 25, 2024
1 parent 5b01d7d commit a4d7dd9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/project/project.go
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ func findSubprojects(superproject Type, apexSuperprojectType projecttype.Type) [
var immediateSubprojects []Type
for _, subprojectsFolderName := range subprojectsFolderNames {
subprojectsPath := superproject.Path.Join(subprojectsFolderName)
if subprojectsPath.Exist() && subprojectsPath.IsDir() {
if subprojectsPath.IsDir() {
directoryListing, err := subprojectsPath.ReadDir()
if err != nil {
panic(err)
Expand Down

0 comments on commit a4d7dd9

Please sign in to comment.