Support project conversion #27

Merged
jaby merged 9 commits from topic/jb/psyfileconv-tim-prj into main 2025-04-16 20:19:59 +00:00
1 changed files with 3 additions and 0 deletions
Showing only changes of commit 85d787151a - Show all commits

View File

@ -56,6 +56,9 @@ pub fn run_subcommand(compress_lz4: bool, input_path: Option<PathBuf>, output_pa
}
SubCommands::Project(args) => {
project::run_project(input, args, input_path, &output_path)?;
if let Some(file_path) = &output_path {
let _result = std::fs::remove_file(file_path);
}
Ok(None)
},
}