diff options
| author | xXJSONDeruloXx <danielhimebauch@gmail.com> | 2025-01-22 22:16:29 -0500 |
|---|---|---|
| committer | xXJSONDeruloXx <danielhimebauch@gmail.com> | 2025-01-22 22:16:29 -0500 |
| commit | aaaa3d6d8cf41b2de461cd4510d18e5cc8e60ec8 (patch) | |
| tree | b63e338b12c2c01bec3387a983bbc120e9c07d39 /main.py | |
| parent | 871cdbd04df02b32dbdd07467720b6eb9537178a (diff) | |
| download | Decky-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.py | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -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 { |
