summaryrefslogtreecommitdiff
path: root/main.py
diff options
context:
space:
mode:
authorxXJSONDeruloXx <danielhimebauch@gmail.com>2025-01-22 22:16:29 -0500
committerxXJSONDeruloXx <danielhimebauch@gmail.com>2025-01-22 22:16:29 -0500
commitaaaa3d6d8cf41b2de461cd4510d18e5cc8e60ec8 (patch)
treeb63e338b12c2c01bec3387a983bbc120e9c07d39 /main.py
parent871cdbd04df02b32dbdd07467720b6eb9537178a (diff)
downloadDecky-Framegen-aaaa3d6d8cf41b2de461cd4510d18e5cc8e60ec8.tar.gz
Decky-Framegen-aaaa3d6d8cf41b2de461cd4510d18e5cc8e60ec8.zip
fix prep script, path to openssl and logging
Diffstat (limited to 'main.py')
-rw-r--r--main.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/main.py b/main.py
index e2c4c3b..f26d320 100644
--- a/main.py
+++ b/main.py
@@ -89,11 +89,14 @@ class Plugin:
fgmod_path = Path("/home/deck/fgmod")
fgmod_path.mkdir(parents=True, exist_ok=True)
+ decky.logger.info(f"Script output:\n{process.stdout}")
+ decky.logger.error(f"Script errors:\n{process.stderr}")
+
if "All done!" not in process.stdout:
decky.logger.error("Installation did not complete successfully")
return {
"status": "error",
- "message": "Installation did not complete successfully"
+ "message": process.stdout + process.stderr
}
return {