Skip to content

Commit

Permalink
chore: Remove unnecessary output
Browse files Browse the repository at this point in the history
  • Loading branch information
pkptzx committed Mar 13, 2024
1 parent 4c54844 commit b474c55
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rawcopy-rs"
version = "0.1.2"
version = "0.1.3"
edition = "2021"
authors = ["码魂 <[email protected]>"]
description = "RawCopy crate provides the capability to use \"Volume Shadow Copy technology\" for file copying in Rust.Primarily aimed at replicating files that cannot be directly copied due to being in use."
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ pub fn rawcopy(file_path: &str, save_path: &str) -> Result<()> {
};

for ele in components {
println!("{}", ele);
// println!("{}", ele);
cd(ele, &mut info)?;
}

Expand Down

0 comments on commit b474c55

Please sign in to comment.