Skip to content

Commit

Permalink
Merge pull request #65 from Kotyarich/fix-packages-parsing
Browse files Browse the repository at this point in the history
Fix parsing same named packages
  • Loading branch information
fe3dback authored Aug 26, 2024
2 parents 074b817 + f07ba20 commit 9191fce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/services/checker/deepscan/ast_utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ func parseRecursive(
}

for packageID, astPackage := range found {
pkgs[packageID] = astPackage
pkgs[fmt.Sprintf("%s_%s", analysePackage, packageID)] = astPackage
}
}

Expand Down

0 comments on commit 9191fce

Please sign in to comment.