Skip to content

Commit

Permalink
Use platform based path concatenation
Browse files Browse the repository at this point in the history
  • Loading branch information
nicholas-l authored and sharkdp committed Oct 30, 2020
1 parent 3acfe79 commit 8e81315
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/bin/bat/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -207,11 +207,11 @@ pub fn list_themes(cfg: &Config) -> Result<()> {
}
writeln!(
stdout,
"Further themes can be installed to '{}/themes', \
"Further themes can be installed to '{}', \
and are added to the cache with `bat cache --build`. \
For more information, see:\n\n \
https://github.com/sharkdp/bat#adding-new-themes",
config_file().to_string_lossy()
config_file().join("themes").to_string_lossy()
)?;

Ok(())
Expand Down

0 comments on commit 8e81315

Please sign in to comment.