Skip to content

Commit

Permalink
Merge branch 'jsSkipFile' of https://github.com/Privado-Inc/joern int…
Browse files Browse the repository at this point in the history
…o jsSkipFile
  • Loading branch information
khemrajrathore committed Nov 7, 2024
2 parents f26b523 + 10117f4 commit 275effa
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,9 @@ class AstGenRunner(config: Config) {
AstGenRunnerResult(parsed.map((in.toString(), _)), skipped.map((in.toString(), _)))
case Failure(f) =>
logger.error("\t- running astgen failed!", f)
AstGenRunnerResult()
val parsed = checkParsedFiles(filterFiles(SourceFiles.determine(out.toString(), Set(".json")), out), in)
val skipped = List.empty
AstGenRunnerResult(parsed.map((in.toString(), _)), skipped.map((in.toString(), _)))
}
}

Expand Down

0 comments on commit 275effa

Please sign in to comment.