We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 49b3ff5 commit c707ef4Copy full SHA for c707ef4
skytemple_randomizer/frontend/gtk/main.py
@@ -37,6 +37,12 @@
37
38
ctypes.cdll.msvcrt._putenv(f"SSL_CERT_FILE={ca_bundle_path}")
39
ctypes.cdll.msvcrt._putenv(f"REQUESTS_CA_BUNDLE={ca_bundle_path}")
40
+ else:
41
+ # Make sure armips can be found.
42
+ base_path = os.path.abspath(os.path.join(data_dir(), ".."))
43
+ os.environ["PATH"] = (
44
+ f"{base_path}/skytemple_files/_resources:{os.environ['PATH']}"
45
+ )
46
47
try:
48
init_locale()
0 commit comments