Skip to content

Commit 06437dd

Browse files
committed
skip writing if content not changed
1 parent 30c5966 commit 06437dd

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed

Tocsoft.GraphQLCodeGen.Cli/CodeGenerator.cs

+12-2
Original file line numberDiff line numberDiff line change
@@ -68,9 +68,19 @@ internal async Task LoadSource()
6868
internal void Export()
6969
{
7070
Directory.CreateDirectory(Path.GetDirectoryName(this.settings.OutputPath));
71-
File.WriteAllText(this.settings.OutputPath, GeneratedCode);
72-
}
71+
bool skipWriteText = false;
72+
if (File.Exists(this.settings.OutputPath))
73+
{
74+
var currentText = File.ReadAllText(this.settings.OutputPath);
75+
skipWriteText = (currentText == GeneratedCode);
76+
}
7377

78+
if (!skipWriteText)
79+
{
80+
File.WriteAllText(this.settings.OutputPath, GeneratedCode);
81+
}
82+
}
83+
7484
internal void Render()
7585
{
7686
if (!HasParsingErrors)

0 commit comments

Comments
 (0)