소스 검색

Overwrite on uninstaller copy

Eric Reed 12 년 전
부모
커밋
d4690904fb
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      MediaBrowser.Uninstaller/Program.cs

+ 1 - 1
MediaBrowser.Uninstaller/Program.cs

@@ -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