diff options
| author | xXJSONDeruloXx <danielhimebauch@gmail.com> | 2025-07-17 21:00:44 -0400 |
|---|---|---|
| committer | xXJSONDeruloXx <danielhimebauch@gmail.com> | 2025-07-17 21:00:44 -0400 |
| commit | 620c04f75ad0f6025cc26f73dd07c466d6e1c62e (patch) | |
| tree | a96afdb471cd6b475d766463987f03807c6f0a89 /py_modules/lsfg_vk/installation.py | |
| parent | ad0ba0fc61f83e2aaf22192e7d0ad05dde9ffd62 (diff) | |
| download | decky-lsfg-vk-620c04f75ad0f6025cc26f73dd07c466d6e1c62e.tar.gz decky-lsfg-vk-620c04f75ad0f6025cc26f73dd07c466d6e1c62e.zip | |
fix config writes
Diffstat (limited to 'py_modules/lsfg_vk/installation.py')
| -rw-r--r-- | py_modules/lsfg_vk/installation.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/py_modules/lsfg_vk/installation.py b/py_modules/lsfg_vk/installation.py index 27be850..fc9ac97 100644 --- a/py_modules/lsfg_vk/installation.py +++ b/py_modules/lsfg_vk/installation.py @@ -114,8 +114,8 @@ class InstallationService(BaseService): # Generate TOML content using centralized manager toml_content = ConfigurationManager.generate_toml_content(config) - # Use atomic write to prevent corruption - self._atomic_write(self.config_file_path, toml_content, 0o644) + # Write initial config file + 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 |
