Skip to content

Commit

Permalink
Merge pull request #209 from sapphire-janrain/master
Browse files Browse the repository at this point in the history
fix(go): Make list -u work for Go 1.14+
  • Loading branch information
taikuukaits committed Aug 13, 2020
2 parents da9780b + 01919c1 commit 0b410b4
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,6 @@ public Extraction extract(File directory, File goExe) {
modGraphOutput = execute(directory, goExe, "Querying for the go mod graph failed:", "mod", "graph");
}
final List<CodeLocation> codeLocations = goModGraphParser.parseListAndGoModGraph(listOutput, modGraphOutput);
return new Extraction.Builder().success(codeLocations).build();//no project info - hoping git can help with that.
} catch (Exception e) {
return new Extraction.Builder().exception(e).build();
}
Expand Down

0 comments on commit 0b410b4

Please sign in to comment.