diff options
| author | Kurt Himebauch <136133082+xXJSONDeruloXx@users.noreply.github.com> | 2026-09-06 11:15:24 -0400 |
|---|---|---|
| committer | Kurt Himebauch <136133082+xXJSONDeruloXx@users.noreply.github.com> | 2026-09-06 11:15:24 -0400 |
| commit | 914630e080806eb0d91e473637fd83dbe1221e23 (patch) | |
| tree | f2bbcbf787b42f3065d156dd04bddec90afef7dd /py_modules | |
| parent | 77656ad88655effe0411808baf2fb90c629a24f8 (diff) | |
| download | decky-lsfg-vk-914630e080806eb0d91e473637fd83dbe1221e23.tar.gz decky-lsfg-vk-914630e080806eb0d91e473637fd83dbe1221e23.zip | |
fix: require complete v2 installation
Diffstat (limited to 'py_modules')
| -rw-r--r-- | py_modules/lsfg_vk/installation.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/py_modules/lsfg_vk/installation.py b/py_modules/lsfg_vk/installation.py index 0566d6b..beefccb 100644 --- a/py_modules/lsfg_vk/installation.py +++ b/py_modules/lsfg_vk/installation.py @@ -200,7 +200,7 @@ class InstallationService(BaseService): json_exists = self.json_file.exists() and self.json_x86_file.exists() script_exists = self.lsfg_launch_script_path.exists() return { - "installed": lib_exists and json_exists, + "installed": lib_exists and json_exists and script_exists and self.cli_file.exists(), "lib_exists": lib_exists, "json_exists": json_exists, "script_exists": script_exists, |
