Swapped out to_string_lossy with display for user facing text (#5666)

Signed-off-by: Vincent Huang <vhuang@squareup.com>
This commit is contained in:
Vincent H.
2025-11-11 06:10:45 -08:00
committed by GitHub
parent 9345319ade
commit 23f26fb9e1
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -63,7 +63,7 @@ pub fn load_local_recipe_file(recipe_name: &str) -> Result<RecipeFile> {
let search_dirs_str = search_dirs
.iter()
.map(|p| p.to_string_lossy())
.map(|p| p.display().to_string())
.collect::<Vec<_>>()
.join(":");
Err(anyhow!(