From ab2f5750dc0fc137e00c786fa4d9275b514f7dee Mon Sep 17 00:00:00 2001 From: nub31 Date: Tue, 10 Feb 2026 23:31:44 +0100 Subject: [PATCH] ... --- compiler/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/Program.cs b/compiler/Program.cs index c5f66c7..b365dac 100644 --- a/compiler/Program.cs +++ b/compiler/Program.cs @@ -177,7 +177,7 @@ static void WriteNublib(string outputPath, string archivePath, Manifest manifest var manifestEntry = zip.CreateEntry("manifest.json"); using (var writer = new StreamWriter(manifestEntry.Open())) { - writer.Write(JsonSerializer.Serialize(manifest)); + writer.Write(serialized); } var archiveEntry = zip.CreateEntry("lib.a");