testing generating config stuff

This commit is contained in:
SadlyNotSappho 2023-07-11 10:11:20 -07:00
parent 4ec3c557fd
commit f03c42f8f7
1 changed files with 7 additions and 6 deletions

View File

@ -13,11 +13,12 @@ struct Args {
}
fn main() {
let args = Args::parse();
println!("{:?}", args);
// let args = Args::parse();
// println!("{:?}", args);
let mut source = File::open(args.input).unwrap();
let dest = Path::new(&args.output);
let config_location = cyber_mod_manager::get_config_location();
let steam_location = cyber_mod_manager::get_steam_location();
uncompress_archive(&mut source, &dest, Ownership::Preserve).unwrap();
println!("Config: {}", config_location);
println!("Steam: {}", steam_location);
}