Delete dummy file

This commit is contained in:
Jaby 2025-04-16 21:46:40 +02:00
parent d69b144ebe
commit 85d787151a
1 changed files with 3 additions and 0 deletions

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)
},
}