Skip to content

Commit

Permalink
Fix string interpolation
Browse files Browse the repository at this point in the history
  • Loading branch information
aldur authored and matze committed Feb 25, 2024
1 parent e74df3a commit b80ed4f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/env.rs
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ pub fn base_path() -> &'static BasePath {
if path.ends_with('/') {
BasePath(path.to_string())
} else {
BasePath("${path}/".to_string())
BasePath(format!("{path}/"))
}
}
Err(err) => {
Expand Down

0 comments on commit b80ed4f

Please sign in to comment.