add more modules to credits, fix SSL not being found and downloads crashing on executables with certifi

This commit is contained in:
csd4ni3l
2025-07-15 19:56:55 +02:00
parent b68e9aa4fd
commit 659f4e4462
6 changed files with 13 additions and 2 deletions

3
run.py
View File

@@ -1,7 +1,8 @@
import os
import os, certifi
bin_path = os.path.join(os.getcwd(), "bin")
current_path = os.environ.get("PATH", "")
os.environ["PATH"] = f"{bin_path}{os.pathsep}{current_path}"
os.environ['SSL_CERT_FILE'] = certifi.where() # Fix SSL not working and downloads crashing.
import pyglet