1
0
Fork 0

tried to fix compilation error on windows

This commit is contained in:
Kim, Jimin 2022-02-08 21:16:59 +09:00
parent a910f2a19e
commit 2ee06eb678
2 changed files with 2 additions and 1 deletions

View file

@ -2,9 +2,11 @@ use super::InstallErr;
use std::fs;
#[cfg(not(target_os = "windows"))]
use std::os::unix::prelude::PermissionsExt;
use std::path::Path;
#[cfg(not(target_os = "windows"))]
pub async fn unix_launch_option_setup(
window: &tauri::Window,
game_path: &str,

View file

@ -5,7 +5,6 @@ mod types;
mod clean;
mod install_bepinex;
mod install_mod;
#[cfg(not(target_os = "windows"))]
mod launch_options;
use types::InstallErr;