Skip to content

Commit

Permalink
fix: don't change default config file path
Browse files Browse the repository at this point in the history
  • Loading branch information
Aloxaf committed Oct 13, 2022
1 parent 83dac98 commit f3f79bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bin/silicon/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ pub fn config_file() -> PathBuf {
.ok()
.map(PathBuf::from)
.filter(|config_path| config_path.is_file())
.unwrap_or_else(|| PROJECT_DIRS.config_dir().to_owned())
.unwrap_or_else(|| PROJECT_DIRS.config_dir().join("config"))
}

pub fn get_args_from_config_file() -> Vec<OsString> {
Expand Down

0 comments on commit f3f79bc

Please sign in to comment.