Updater fixes

This commit is contained in:
Natsumi
2022-12-06 06:03:51 +13:00
parent 156107be1f
commit 3268b898af
2 changed files with 2 additions and 1 deletions

View File

@@ -308,6 +308,7 @@ namespace VRCX
Process VRCXProcess = new Process();
VRCXProcess.StartInfo.FileName = Path.Combine(Program.BaseDirectory, "VRCX.exe");
VRCXProcess.StartInfo.UseShellExecute = false;
VRCXProcess.StartInfo.Arguments = "/Upgrade";
VRCXProcess.Start();
Environment.Exit(0);
}