Skip to content

Commit

Permalink
Export console print
Browse files Browse the repository at this point in the history
  • Loading branch information
Noggog committed Feb 21, 2021
1 parent b0798e7 commit 929aa96
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Mutagen.Bethesda.FormKeys.Generator/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,9 @@ public static void Generate(GenerateFromMod gen)
}
}

fg.Generate(Path.Combine("Output", gen.Release.ToString(), modName, $"{recGroup.Key}.cs"));
var path = Path.Combine("Output", gen.Release.ToString(), modName, $"{recGroup.Key}.cs");
fg.Generate(path);
System.Console.WriteLine($"Exported: {path}");
}
}
}
Expand Down

0 comments on commit 929aa96

Please sign in to comment.