From b97c8850530fc629c02a29600f6edbc1a50b6c86 Mon Sep 17 00:00:00 2001 From: Timon Date: Thu, 12 Mar 2026 11:11:11 +0000 Subject: [PATCH] Desktop: Remove CEF CREDITS.html from Windows bundle --- desktop/bundle/src/win.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/desktop/bundle/src/win.rs b/desktop/bundle/src/win.rs index 6fc46fdda9..f673124cf8 100644 --- a/desktop/bundle/src/win.rs +++ b/desktop/bundle/src/win.rs @@ -55,6 +55,7 @@ fn remove_unnecessary_cef_files(app_dir: &Path) -> Result<(), Box> { fs::remove_file(app_dir.join("bootstrapc.exe"))?; fs::remove_file(app_dir.join("bootstrap.exe"))?; fs::remove_file(app_dir.join("libcef.lib"))?; + fs::remove_file(app_dir.join("CREDITS.html"))?; Ok(()) }