From ed974f08873b18407d02ab739f11f3d50048596d Mon Sep 17 00:00:00 2001 From: Nathanne Isip Date: Fri, 13 Dec 2024 12:53:02 +0800 Subject: [PATCH] Improved GLFW for installation and compilation with GLFW in standard library. --- build.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build.py b/build.py index bb6e81a..486afd6 100644 --- a/build.py +++ b/build.py @@ -114,8 +114,9 @@ def download_file(url, local_filename): if chunk: f.write(chunk) + subprocess.run(['dir']) print(f"{local_filename} has been downloaded successfully.") - unzip_and_move_contents(local_filename, "temp/") + unzip_and_move_contents(local_filename, "temp") except requests.RequestException as e: print(f"Failed to download {url}. Error: {e}")