Skip to content

Commit

Permalink
Fix generation deleting ObjectiveCCore
Browse files Browse the repository at this point in the history
  • Loading branch information
IsaacMarovitz committed Mar 19, 2024
1 parent 7010a3f commit f2b5d82
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/SharpMetal.Generator/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public static void Main(string[] args)
foreach (var subDirectory in mainProjectPath.GetDirectories())
{
// Get rid of this condition when this folder is also generated
if (subDirectory.Name != "ObjectiveC" && subDirectory.Name != "bin" && subDirectory.Name != "obj")
if (subDirectory.Name != "ObjectiveCCore" && subDirectory.Name != "bin" && subDirectory.Name != "obj")
{
subDirectory.Delete(true);
}
Expand Down

0 comments on commit f2b5d82

Please sign in to comment.