Fix upload not working.

This commit is contained in:
Lovi 2024-06-17 22:35:24 +02:00
parent 4766a1017d
commit 678e39cc46

View File

@ -90,7 +90,7 @@ def download_and_extract_latest_commit():
console.log("[green]Getting zip file from repository...")
# Download the zipball
response = httpx.get(zipball_url)
response = httpx.get(zipball_url, follow_redirects=True, timeout=10)
# Extract the content of the zipball into a temporary folder
temp_path = os.path.join(os.path.dirname(os.getcwd()), 'temp_extracted')