This commit is contained in:
Michael Zhang 2019-07-17 01:33:10 -05:00
parent 31c7dd0804
commit 394192ffee
No known key found for this signature in database
GPG key ID: 5BAEFE5D04F0CE6C

View file

@ -69,7 +69,7 @@ fn main() {
println!("{}\t{}", info.deletion_date, info.path.to_str().unwrap());
}
}
Command::Put { paths, recursive } => {
Command::Put { paths, recursive, .. } => {
for path in paths {
match crate::ops::put(path, recursive) {
Ok(_) => (),