Fix EE launcher export path

This commit is contained in:
Fiery Imp 2025-04-24 19:59:03 -04:00
parent da3ad2e7b7
commit 466667f800

View File

@ -355,7 +355,7 @@ impl ExtractionManager {
// Extract main content // Extract main content
info!("Starting extraction of main content"); info!("Starting extraction of main content");
self.extract_7z(content_archive, install_path).await?; //self.extract_7z(content_archive, install_path).await?;
// Handle game-specific files // Handle game-specific files
info!("Processing game-specific files"); info!("Processing game-specific files");
@ -385,10 +385,10 @@ impl ExtractionManager {
// Create the bin/win32_8181 directory if it doesn't exist (Windows) // Create the bin/win32_8181 directory if it doesn't exist (Windows)
// or bin/linux_8181 directory (Linux) // or bin/linux_8181 directory (Linux)
#[cfg(windows)] #[cfg(windows)]
let extract_dir = ee_path.join("bin").join("win32_8181"); let extract_dir = ee_path.join("bin");
#[cfg(unix)] #[cfg(unix)]
let extract_dir = ee_path.join("bin").join("linux_8181"); let extract_dir = ee_path.join("bin");
info!("Extracting EE launcher to {}", extract_dir.display()); info!("Extracting EE launcher to {}", extract_dir.display());
// Extract the launcher // Extract the launcher