From f03c42f8f758c7087a4646b5d5e5b142c9899291 Mon Sep 17 00:00:00 2001 From: SadlyNotSappho Date: Tue, 11 Jul 2023 10:11:20 -0700 Subject: [PATCH] testing generating config stuff --- src/main.rs | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/src/main.rs b/src/main.rs index 7e2210b..91b90fc 100644 --- a/src/main.rs +++ b/src/main.rs @@ -13,11 +13,12 @@ struct Args { } fn main() { - let args = Args::parse(); - println!("{:?}", args); - - let mut source = File::open(args.input).unwrap(); - let dest = Path::new(&args.output); + // let args = Args::parse(); + // println!("{:?}", args); - uncompress_archive(&mut source, &dest, Ownership::Preserve).unwrap(); + let config_location = cyber_mod_manager::get_config_location(); + let steam_location = cyber_mod_manager::get_steam_location(); + + println!("Config: {}", config_location); + println!("Steam: {}", steam_location); }