1
Fork 0
mirror of https://github.com/redstrate/Physis.git synced 2025-04-21 12:17:45 +00:00

Add match for unhandled operation

This commit is contained in:
Joshua Goins 2022-07-20 11:42:31 -04:00
parent 115733d0b6
commit d6c85ab6a6

View file

@ -414,6 +414,9 @@ pub fn process_patch(data_dir : &str, path : &str) {
fs::remove_file(new_path.as_str());
}
_ => {
panic!("Unhandled operation!");
}
}
}
_ => {}