Skip to content

Commit

Permalink
Merge pull request #5601 from jmarolf/bugfix/emit-all-globalconfig-fi…
Browse files Browse the repository at this point in the history
…les-as-lower-case
  • Loading branch information
jmarolf authored Oct 6, 2021
2 parents 49a5837 + cd7a634 commit f368a7c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Tools/GenerateDocumentationAndConfigFiles/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1144,7 +1144,7 @@ private static void CreateGlobalconfig(
sortedRulesById,
shippedReleaseData);
var directory = Directory.CreateDirectory(folder);
var editorconfigFilePath = Path.Combine(directory.FullName, editorconfigFileName);
var editorconfigFilePath = Path.Combine(directory.FullName, editorconfigFileName.ToLowerInvariant());
File.WriteAllText(editorconfigFilePath, text);
return;

Expand Down

0 comments on commit f368a7c

Please sign in to comment.