From 85d787151aa804f66708a0496144a34739e02278 Mon Sep 17 00:00:00 2001 From: Jaby Date: Wed, 16 Apr 2025 21:46:40 +0200 Subject: [PATCH] Delete dummy file --- src/Tools/psxfileconv/src/lib.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/Tools/psxfileconv/src/lib.rs b/src/Tools/psxfileconv/src/lib.rs index 49771445..8d5ca820 100644 --- a/src/Tools/psxfileconv/src/lib.rs +++ b/src/Tools/psxfileconv/src/lib.rs @@ -56,6 +56,9 @@ pub fn run_subcommand(compress_lz4: bool, input_path: Option, 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) }, }