Skip to content

Commit

Permalink
Update Updater.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisFeline committed Oct 9, 2024
1 parent 9309279 commit cb37e92
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Updater.cs
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ internal static void Start(GitHubRelease release, GitHubRelease.Asset asset) {

Program.ReleaseMutex(); // Release mutex so downloaded app opens properly
// Start new process with --post-update
ProcessStartInfo processInfo = new ProcessStartInfo("ToNSaveManager.exe", "--post-update");
ProcessStartInfo processInfo = new ProcessStartInfo(Program.ProgramFile, "--post-update");
Process.Start(processInfo);
// Exit this app
Application.Exit();
Expand Down

0 comments on commit cb37e92

Please sign in to comment.