From 315d3b735e6ee3a477abef619fad0bc365803a1b Mon Sep 17 00:00:00 2001 From: SadlyNotSappho Date: Tue, 25 Jul 2023 15:21:29 -0700 Subject: [PATCH] create config file --- src/main.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 91b90fc..879ef1b 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,4 +1,4 @@ -use std::{path::Path, fs::File}; +use std::{path::Path, fs::{File, self}}; use clap::Parser; use compress_tools::*; @@ -21,4 +21,6 @@ fn main() { println!("Config: {}", config_location); println!("Steam: {}", steam_location); + + cyber_mod_manager::create_config(&format!("{config_location}/CyberModManager/config.json")); }