Skip to content

Commit

Permalink
remove redundant path prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
connormullett committed Mar 24, 2022
1 parent 96ca092 commit 33d8b8a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion forest/src/cli/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ fn find_default_config() -> Option<Config> {

if let Some(dir) = ProjectDirs::from("com", "ChainSafe", "Forest") {
let mut config_dir = dir.config_dir().to_path_buf();
config_dir.push("/forest/config.toml");
config_dir.push("config.toml");
if config_dir.exists() {
info!("Found config file at {}", config_dir.display());
return read_config_or_none(config_dir);
Expand Down

0 comments on commit 33d8b8a

Please sign in to comment.