Skip to content

Commit

Permalink
Fix error message for undefined download directory (#87)
Browse files Browse the repository at this point in the history
  • Loading branch information
mpldr authored and ulyssa committed Apr 25, 2023
1 parent ad3b40d commit b6a318d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,7 @@ impl Directories {
let downloads = self
.downloads
.or_else(dirs::download_dir)
.expect("no dirs.download value configured!");
.expect("no dirs.downloads value configured!");

DirectoryValues { cache, logs, downloads }
}
Expand Down

0 comments on commit b6a318d

Please sign in to comment.