From 71500b5c68254eb1886c0ac14054b5612a74f0b7 Mon Sep 17 00:00:00 2001 From: Nabile Rahmani Date: Sun, 17 Jun 2018 13:18:05 +0200 Subject: [PATCH] Updates: don't auto-restart on Windows. --- DotN64.Desktop/Updater.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DotN64.Desktop/Updater.cs b/DotN64.Desktop/Updater.cs index 16faec9..158268d 100644 --- a/DotN64.Desktop/Updater.cs +++ b/DotN64.Desktop/Updater.cs @@ -145,7 +145,7 @@ namespace DotN64.Desktop writer.WriteLine(":UPDATE"); writer.WriteLine($"move /Y \"{newExecutableName}\" \"{executableName}\""); - writer.WriteLine($"start \"\" \"{executableName}\""); + //writer.WriteLine($"start \"\" \"{executableName}\""); // It's pointless to automatically restart the program as it'll crash with no arguments in its current state. writer.WriteLine($"del /A:H %0"); }