From f340319a9ea24febb2c504dc8822681634ce4950 Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Wed, 20 Jul 2022 16:30:17 -0400 Subject: [PATCH] Stub out SqpkFileOperation::RemoveAll --- src/patch.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/patch.rs b/src/patch.rs index 3649a05..0aab00a 100755 --- a/src/patch.rs +++ b/src/patch.rs @@ -427,6 +427,9 @@ pub fn process_patch(data_dir : &str, path : &str) { fs::remove_file(new_path.as_str()); } + SqpkFileOperation::RemoveAll => { + println!("STUB: SqpkFileOperation::RemoveAll"); + } _ => { panic!("Unhandled operation!"); }