Skip to content

Commit 3d750e3

Browse files
committed
Fix a regressive crash when generating parser bindings
Signed-off-by: Dimitar Dobrev <[email protected]>
1 parent f09f95d commit 3d750e3

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/CppParser/ParserGen/ParserGen.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,7 @@ static string GetSourceDirectory(string dir)
3535
{
3636
var path = Path.Combine(directory.FullName, dir);
3737

38-
if (Directory.Exists(path) &&
39-
Directory.Exists(Path.Combine(directory.FullName, "deps")))
38+
if (Directory.Exists(path))
4039
return path;
4140

4241
directory = directory.Parent;

0 commit comments

Comments
 (0)