Skip to content

Commit

Permalink
Fixed a bug causing error: ".dll file not found"
Browse files Browse the repository at this point in the history
Christine Zhou committed Jan 20, 2025
1 parent 521f855 commit 632ba13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Src/PCompiler/PCommandLine/Options/PCheckerOptions.cs
Original file line number Diff line number Diff line change
@@ -400,7 +400,7 @@ from file in Directory.GetFiles(checkerConfiguration.PCompiledPath, filePattern,
{
if (checkerConfiguration.Mode == CheckerMode.BugFinding)
{
if (!fileName.Contains($"CSharp{pathSep}"))
if (!fileName.Contains($"PChecker{pathSep}"))
continue;
if (fileName.EndsWith("PCheckerCore.dll")
|| fileName.EndsWith("PCSharpRuntime.dll")

0 comments on commit 632ba13

Please sign in to comment.