summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKurt Himebauch <136133082+xXJSONDeruloXx@users.noreply.github.com>2026-09-06 11:15:24 -0400
committerKurt Himebauch <136133082+xXJSONDeruloXx@users.noreply.github.com>2026-09-06 11:15:24 -0400
commit914630e080806eb0d91e473637fd83dbe1221e23 (patch)
treef2bbcbf787b42f3065d156dd04bddec90afef7dd
parent77656ad88655effe0411808baf2fb90c629a24f8 (diff)
downloaddecky-lsfg-vk-914630e080806eb0d91e473637fd83dbe1221e23.tar.gz
decky-lsfg-vk-914630e080806eb0d91e473637fd83dbe1221e23.zip
fix: require complete v2 installation
-rw-r--r--py_modules/lsfg_vk/installation.py2
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,