Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
CHKZL committed Jun 22, 2024
1 parent 92401f7 commit ac60ba0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Update/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
}
Expand Down

0 comments on commit ac60ba0

Please sign in to comment.