Skip to content

Commit

Permalink
Fix regression from change in ilias-rs
Browse files Browse the repository at this point in the history
  • Loading branch information
Mr-Pine committed Oct 29, 2024
1 parent c61a0f3 commit ab421cb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ fn main() -> Result<()> {
.to_string_lossy()
.into_owned(),
},
path: path.to_string(),
path: path.into(),
})
.collect::<Vec<_>>();

Expand Down Expand Up @@ -212,7 +212,7 @@ where
"Uploaded {} successfully!",
&transformed_files
.iter()
.map(|item| format!("{} as {}", item.path, item.name))
.map(|item| format!("{:?} as {}", item.path, item.name))
.collect::<Vec<String>>()
.join(", ")
);
Expand Down

0 comments on commit ab421cb

Please sign in to comment.