From 9931114c4c457e6c40e5cca0976d93fd299510cc Mon Sep 17 00:00:00 2001 From: clragon Date: Sun, 13 Jan 2019 20:07:52 +0100 Subject: [PATCH] replaced flushAsync which caused issues --- ExeToBat/BatGen.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ExeToBat/BatGen.cs b/ExeToBat/BatGen.cs index f3588a7..4b7746b 100644 --- a/ExeToBat/BatGen.cs +++ b/ExeToBat/BatGen.cs @@ -393,7 +393,7 @@ namespace ExeToBat } - writer.FlushAsync(); + writer.Flush(); Console.WriteLine("[Generated] {0}", Path.GetFileName(source.File)); }