diff --git a/xdudata/update.py b/xdudata/update.py index 8dd8af4..8f61b6f 100644 --- a/xdudata/update.py +++ b/xdudata/update.py @@ -15,9 +15,6 @@ from xdudata.asset_extract import process_se, process_bgm, process_voice, proces def update_all( cache_dir, update_dir, translation_dir, extract_dir, languages, ): - print("Checking tool availability") - validate_tools() - print("Cleaning cache") cleanup_cache(cache_dir) @@ -43,11 +40,6 @@ def update_all( process_movie(cache_dir, extract_dir, update_dir) -def validate_tools(): - # TODO validate all the tools are in PATH - ... - - def cleanup_cache(cache_dir): with suppress(FileNotFoundError): shutil.rmtree(os.path.join(cache_dir, "Common/Asset/Utage/event32"))