From 86e9dc245174d67b1326d6da3285e01823629c07 Mon Sep 17 00:00:00 2001 From: nix Date: Tue, 31 Dec 2024 13:22:05 +0000 Subject: [PATCH] Actualizar picobuildWindows.py --- picobuildWindows.py | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/picobuildWindows.py b/picobuildWindows.py index 274146a..35c196a 100644 --- a/picobuildWindows.py +++ b/picobuildWindows.py @@ -85,5 +85,14 @@ def main(): create_folder(hsu_dest_path) download_and_extract_repo(hsu_repo_url, hsu_dest_path) + # Step 5.1: Move "2hsu-main" contents to current directory and remove the folder + hsu_main_path = os.path.join(hsu_dest_path, "2hsu-main") + move_folder_content(hsu_main_path, os.getcwd()) + + # Step 5.2: Remove the "2hsu" folder after its contents are moved + if os.path.exists(hsu_dest_path): + os.rmdir(hsu_dest_path) + print(f"Removed folder: {hsu_dest_path}") + if __name__ == "__main__": main()