From ac60ba01d41384702f350472039a5f9c931bcde5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=B1=B3?= Date: Sat, 22 Jun 2024 20:43:25 +0800 Subject: [PATCH] update --- Update/Program.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Update/Program.cs b/Update/Program.cs index 6ff11a29..f51b2217 100644 --- a/Update/Program.cs +++ b/Update/Program.cs @@ -112,17 +112,17 @@ public static void Main(string[] args) { if (type.Contains("DDTV-Server")) { - Process.Start("./Server.exe"); + Process.Start("../Server.exe"); return; } else if (type.Contains("DDTV-Client")) { - Process.Start("./Client.exe"); + Process.Start("../Client.exe"); return; } else if (type.Contains("DDTV-Desktop")) { - Process.Start("./Desktop.exe"); + Process.Start("../Desktop.exe"); return; } }