summaryrefslogtreecommitdiff
path: root/py_modules/lsfg_vk/installation.py
diff options
context:
space:
mode:
authorKurt Himebauch <136133082+xXJSONDeruloXx@users.noreply.github.com>2025-07-22 13:33:13 -0400
committerGitHub <noreply@github.com>2025-07-22 13:33:13 -0400
commit42668d412105b972e0cc7440b64e8e24aeef4587 (patch)
treec8f20ccbe508ac6684a38c115d63602476575493 /py_modules/lsfg_vk/installation.py
parent97bb41947bd44a712ad26905771a9d2cc4692878 (diff)
parent43def41747d3b75bb547b649a00f12653c3ae537 (diff)
downloaddecky-lsfg-vk-42668d412105b972e0cc7440b64e8e24aeef4587.tar.gz
decky-lsfg-vk-42668d412105b972e0cc7440b64e8e24aeef4587.zip
Merge pull request #67 from xXJSONDeruloXx/workaround-envs
add workaround env vars, rm old tests
Diffstat (limited to 'py_modules/lsfg_vk/installation.py')
-rw-r--r--py_modules/lsfg_vk/installation.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/py_modules/lsfg_vk/installation.py b/py_modules/lsfg_vk/installation.py
index b340093..996a03f 100644
--- a/py_modules/lsfg_vk/installation.py
+++ b/py_modules/lsfg_vk/installation.py
@@ -121,9 +121,10 @@ class InstallationService(BaseService):
self._write_file(self.config_file_path, toml_content, 0o644)
self.log.info(f"Created config file at {self.config_file_path}")
- # Log detected DLL path if found
- if config["dll"]:
- self.log.info(f"Configured DLL path: {config['dll']}")
+ # Log detected DLL path if found - USE GENERATED CONSTANTS
+ from .config_schema_generated import DLL
+ if config[DLL]:
+ self.log.info(f"Configured DLL path: {config[DLL]}")
def _create_lsfg_launch_script(self) -> None:
"""Create the ~/lsfg launch script for easier game setup"""