Skip to content

Commit

Permalink
fix: oli clippy and CI file (#5389)
Browse files Browse the repository at this point in the history
  • Loading branch information
waynexia authored Dec 4, 2024
1 parent 6306acf commit 6cf1269
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci_bin_oli.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ on:
branches:
- main
paths:
- "bin/oay/**"
- "bin/oli/**"
- "core/**"
- ".github/workflows/ci_bin_oli.yml"

Expand Down
2 changes: 1 addition & 1 deletion bin/oli/src/commands/cp.rs
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ impl CopyCmd {
.into_futures_async_read(0..meta.content_length())
.await?;

let copy_progress = CopyProgress::new(&meta, de.path().to_string());
let copy_progress = CopyProgress::new(meta, de.path().to_string());
let mut writer = dst_op
.writer(&dst_root.join(fp).to_string_lossy())
.await?
Expand Down

0 comments on commit 6cf1269

Please sign in to comment.