Skip to content

Commit

Permalink
kill nova thred on update
Browse files Browse the repository at this point in the history
  • Loading branch information
tobiasbaur committed Jun 18, 2019
1 parent 6bd602d commit e8707be
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
Binary file modified bin/updater.exe
Binary file not shown.
5 changes: 5 additions & 0 deletions updater/MainWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,11 @@ public MainWindow(string version)
InitializeComponent();
update(version);

foreach (var process in Process.GetProcessesByName("nova"))
{
process.Kill();
}

}


Expand Down

0 comments on commit e8707be

Please sign in to comment.