Closed WitchFreya closed 9 months ago
Copying a folder using a script fails silently.
existing_folder
.hemtt/scripts/copy_folder.rhai
let existing_folder = HEMTT_RFS.join("existing_folder"); print(`Source folder exists? ${existing_folder.exists()}`); let target_folder = HEMTT_RFS.join("new_folder"); print(`Target folder exists? ${target_folder.exists()}`); let success = existing_folder.copy(target_folder); print(`Copy success? ${success}`);
hemtt.exe script copy_folder
The next release will throw an error with additional information
865f502
Description
Copying a folder using a script fails silently.
Steps to Reproduce
existing_folder
..hemtt/scripts/copy_folder.rhai
with the following:hemtt.exe script copy_folder
Output
User Details