Desktop: Remove CEF CREDITS.html from Windows bundle (#3889)

This commit is contained in:
Timon 2026-03-14 17:44:38 +01:00 committed by GitHub
parent eb30ee78bc
commit 4c45c88034
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 0 deletions

View File

@ -55,6 +55,7 @@ fn remove_unnecessary_cef_files(app_dir: &Path) -> Result<(), Box<dyn Error>> {
fs::remove_file(app_dir.join("bootstrapc.exe"))?; fs::remove_file(app_dir.join("bootstrapc.exe"))?;
fs::remove_file(app_dir.join("bootstrap.exe"))?; fs::remove_file(app_dir.join("bootstrap.exe"))?;
fs::remove_file(app_dir.join("libcef.lib"))?; fs::remove_file(app_dir.join("libcef.lib"))?;
fs::remove_file(app_dir.join("CREDITS.html"))?;
Ok(()) Ok(())
} }