mirror of
https://github.com/winapps-org/winapps.git
synced 2025-08-01 16:36:39 +02:00
chore: run rustfmt once
This commit is contained in:
@@ -12,7 +12,7 @@ fn cli() -> Command {
|
||||
|
||||
fn main() {
|
||||
let cli = cli();
|
||||
let matches = cli.clone( ).get_matches();
|
||||
let matches = cli.clone().get_matches();
|
||||
|
||||
match matches.subcommand() {
|
||||
Some(("check", _)) => {
|
||||
|
@@ -60,12 +60,14 @@ pub fn load_config(path: Option<&str>) -> Config {
|
||||
let mut config_file =
|
||||
File::create(&config_file).expect("Failed to create configuration file");
|
||||
|
||||
let gen_config = toml::to_string(&config).expect("Failed to generate default configuration");
|
||||
let gen_config =
|
||||
toml::to_string(&config).expect("Failed to generate default configuration");
|
||||
write!(config_file, "{}", gen_config).expect("Failed to write configuration file");
|
||||
}
|
||||
|
||||
let config_file = fs::read_to_string(config_file).expect("Failed to read configuration file");
|
||||
let config: Config = toml::from_str(config_file.as_str()).expect("Failed to parse the configuration");
|
||||
let config: Config =
|
||||
toml::from_str(config_file.as_str()).expect("Failed to parse the configuration");
|
||||
|
||||
config
|
||||
}
|
||||
|
Reference in New Issue
Block a user