Skip to content

Commit 9191fce

Browse files
authored
Merge pull request #65 from Kotyarich/fix-packages-parsing
Fix parsing same named packages
2 parents 074b817 + f07ba20 commit 9191fce

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/services/checker/deepscan/ast_utils.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ func parseRecursive(
9898
}
9999

100100
for packageID, astPackage := range found {
101-
pkgs[packageID] = astPackage
101+
pkgs[fmt.Sprintf("%s_%s", analysePackage, packageID)] = astPackage
102102
}
103103
}
104104

0 commit comments

Comments
 (0)