automatically install dependencies

This commit is contained in:
2024-07-13 08:29:11 +02:00
parent f42738cfd9
commit 786621f9c0
6 changed files with 131 additions and 22 deletions

View File

@@ -37,6 +37,7 @@ pub fn save_value(config_path: PathBuf, key: &str, value: bool) {
"ask_bonus_content" => config.ask_bonus_content = value,
"force_update" => config.force_update = value,
"use_https" => config.use_https = value,
"skip_redist" => config.skip_redist = value,
_ => (),
}
save(config_path, config);