update the docs and the extension

This commit is contained in:
afonya 2025-06-18 12:19:34 +02:00
parent f817a83f1d
commit 8dee35c68f
Signed by: afonya
GPG key ID: EBB9C4CAFAAFB2DC
5 changed files with 53 additions and 5 deletions

View file

@ -889,7 +889,7 @@ fn intezo_mappattorol(machine: &mut Machine, op: &DecompiledOperation, args: Vec
if !res {
error(format!("Folder does not exist"), machine, op);
}
match fs::remove_dir_all(&str) {
match fs::remove_dir(&str) {
Err(e) => {
error(format!("Failed to remove directory: {}", e), machine, op);
},