Skip to content

Commit

Permalink
updated to match new boot updater
Browse files Browse the repository at this point in the history
  • Loading branch information
SeanMott committed Oct 6, 2024
1 parent 9eaaf51 commit cda173c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Assets/Scripts/SeanMott/AutoDownload.cs
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ IEnumerator LauncherDL()
System.Diagnostics.Process updater = new System.Diagnostics.Process();
updater.StartInfo.FileName = new DirectoryInfo(System.Environment.CurrentDirectory).FullName + "/KAR_BootUpdate.exe";
updater.StartInfo.WorkingDirectory = new DirectoryInfo(System.Environment.CurrentDirectory).FullName;
updater.StartInfo.Arguments = "-launcher " + Application.version;
updater.StartInfo.Arguments = "-setVer " + Application.version + "-launcher ";
updater.Start();
updater.WaitForExit();
}
Expand All @@ -70,7 +70,7 @@ IEnumerator KARphinDL()
System.Diagnostics.Process updater = new System.Diagnostics.Process();
updater.StartInfo.FileName = new DirectoryInfo(System.Environment.CurrentDirectory).FullName + "/KAR_BootUpdate.exe";
updater.StartInfo.WorkingDirectory = new DirectoryInfo(System.Environment.CurrentDirectory).FullName;
updater.StartInfo.Arguments = "-KARphin " + currentBuild;
updater.StartInfo.Arguments = "-setVer " + currentBuild + " -KARphin";
updater.Start();
updater.WaitForExit();

Expand Down

0 comments on commit cda173c

Please # to comment.