Add generating file cli output

This commit is contained in:
ByteDream 2022-12-08 15:10:53 +01:00
parent 5c3f49e9f4
commit a5e60ea6b7
2 changed files with 9 additions and 3 deletions

View file

@ -307,7 +307,9 @@ impl Execute for Archive {
))
}
generate_mkv(&self, path, video_paths, audio_paths, subtitle_paths)?
let _progess_handler = progress!("Generating mkv");
generate_mkv(&self, path, video_paths, audio_paths, subtitle_paths)?;
info!("Mkv generated")
}
}