mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-09 03:04:24 -04:00
Overwrite on uninstaller copy
This commit is contained in:
parent
098ba6db0d
commit
d4690904fb
@ -23,7 +23,7 @@ namespace MediaBrowser.Uninstaller
|
||||
//copy the real uninstaller to temp location
|
||||
var sourceDir = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location) ?? "";
|
||||
File.WriteAllBytes(tempExe, File.ReadAllBytes(Path.Combine(sourceDir, "MediaBrowser.Uninstaller.Execute.exe")));
|
||||
File.Copy(Path.Combine(sourceDir, "MediaBrowser.Uninstaller.Execute.exe.config"), tempConfig);
|
||||
File.Copy(Path.Combine(sourceDir, "MediaBrowser.Uninstaller.Execute.exe.config"), tempConfig, true);
|
||||
//kick off the copy
|
||||
Process.Start(tempExe, product);
|
||||
//and shut down
|
||||
|
Loading…
x
Reference in New Issue
Block a user