Umtv2-umtpro-ultimateunisoc-v0.1-installer | |link|

The default path is C:\UMT . Keep this default, as the UMT main application looks for module subfolders here.

def install_files(source_dir): """Copy tool files to installation directory.""" install_path = DEFAULT_INSTALL_PATH install_path.mkdir(parents=True, exist_ok=True) for item in source_dir.iterdir(): dest = install_path / item.name if item.is_file(): shutil.copy2(item, dest) elif item.is_dir(): shutil.copytree(item, dest, dirs_exist_ok=True) log.info(f"Files installed to install_path") umtv2-umtpro-ultimateunisoc-v0.1-installer