From 777cc951a8ff562c3cc2c4e2be453258f7398710 Mon Sep 17 00:00:00 2001 From: MrGadget1024 <9826063+MrGadget1024@users.noreply.github.com> Date: Thu, 9 Nov 2023 06:18:52 -0500 Subject: [PATCH] Updated ModPreprocessorDefine.csx --- .github/ModPreprocessorDefine.csx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ModPreprocessorDefine.csx b/.github/ModPreprocessorDefine.csx index 53723ec77..c5f4cb47c 100644 --- a/.github/ModPreprocessorDefine.csx +++ b/.github/ModPreprocessorDefine.csx @@ -74,7 +74,7 @@ string AppendNewEntry(string input, string versionNumber) // Insert the comma and new entry into the "defines" HashSet input = input.Remove(definesEndIndex - 2, 2); // Remove the trailing "};" - input = input.Insert(definesEndIndex - 2, $",\n{newEntry}\n{indentation}};"); + input = input.Insert(definesEndIndex - 2, $",\n{newEntry}\n{indentation}}};"); return input; }