Skip to content

Commit

Permalink
fix verify command
Browse files Browse the repository at this point in the history
  • Loading branch information
Lunarequest committed Apr 18, 2024
1 parent e05f7fc commit 1ef608b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,6 @@ pub fn verify(path: &Path) -> Result<()> {
}
}

println!("{:#?}", sync_files);
if !sync_files.is_empty() {
for file in &sync_files {
let mut map = VerifyMap::new(&file.0, &file.1);
Expand All @@ -318,6 +317,7 @@ pub fn verify(path: &Path) -> Result<()> {
if e.kind() != ErrorKind::NotFound {
return Err(anyhow!("{e}"));
}
map.taint();
PathBuf::from("not linked")
}
};
Expand Down

0 comments on commit 1ef608b

Please sign in to comment.