Getting Rust

This commit is contained in:
2025-11-04 17:44:06 -05:00
parent 70477f3885
commit 1cb74508e6
4 changed files with 27 additions and 38 deletions
+13 -1
View File
@@ -23,7 +23,7 @@
import logging
import os
import tempfile
import dotenv
import urllib3
@@ -38,6 +38,18 @@ urllib3.disable_warnings(
)
def main():
if "NUITKA_ONEFILE_PARENT" in os.environ:
splash_filename = os.path.join(
tempfile.gettempdir(),
f"onefile_{int(os.environ['NUITKA_ONEFILE_PARENT'])}_splash_feedback.tmp"
)
if os.path.exists(splash_filename):
os.unlink(splash_filename)
irtang()
#Determine working directory, setup directory, configure logging, sent env, get API and URL if not already stored
setup()