Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit a4d7dd9

Browse files
umbynosMatteoPologruto
andauthoredJul 25, 2024··
Update internal/project/project.go
Co-authored-by: MatteoPologruto <[email protected]>
1 parent 5b01d7d commit a4d7dd9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎internal/project/project.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ func findSubprojects(superproject Type, apexSuperprojectType projecttype.Type) [
193193
var immediateSubprojects []Type
194194
for _, subprojectsFolderName := range subprojectsFolderNames {
195195
subprojectsPath := superproject.Path.Join(subprojectsFolderName)
196-
if subprojectsPath.Exist() && subprojectsPath.IsDir() {
196+
if subprojectsPath.IsDir() {
197197
directoryListing, err := subprojectsPath.ReadDir()
198198
if err != nil {
199199
panic(err)

0 commit comments

Comments
 (0)
Please sign in to comment.