You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// If the directory for the output path does not exist, create itifletSome(output_parent_dir) = PathBuf::from(&args.output).parent(){if !output_parent_dir.exists(){if std::fs::create_dir_all(output_parent_dir).is_err(){
log::error!("Failed to create output directory: {:?}", output_parent_dir);returnExitCode::FAILURE;};
log::info!("Created output directory: {:?}", output_parent_dir);}}
The text was updated successfully, but these errors were encountered:
src/main.rs
The text was updated successfully, but these errors were encountered: