Skip to content

Commit ab421cb

Browse files
committed
Fix regression from change in ilias-rs
1 parent c61a0f3 commit ab421cb

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

Cargo.lock

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/main.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ fn main() -> Result<()> {
108108
.to_string_lossy()
109109
.into_owned(),
110110
},
111-
path: path.to_string(),
111+
path: path.into(),
112112
})
113113
.collect::<Vec<_>>();
114114

@@ -212,7 +212,7 @@ where
212212
"Uploaded {} successfully!",
213213
&transformed_files
214214
.iter()
215-
.map(|item| format!("{} as {}", item.path, item.name))
215+
.map(|item| format!("{:?} as {}", item.path, item.name))
216216
.collect::<Vec<String>>()
217217
.join(", ")
218218
);

0 commit comments

Comments
 (0)