diff options
| author | xXJSONDeruloXx <danielhimebauch@gmail.com> | 2025-01-26 15:00:56 -0500 |
|---|---|---|
| committer | xXJSONDeruloXx <danielhimebauch@gmail.com> | 2025-01-26 15:00:56 -0500 |
| commit | ab10c88caa0a03d6aee76d81f887f82bb5dcee3d (patch) | |
| tree | 056fa0d8819fa5e9bd2f3cf8809d201cc9a32817 | |
| parent | ae9f0d22ac5d91855e7b33e38d5eae53abadde07 (diff) | |
| download | Decky-Framegen-ab10c88caa0a03d6aee76d81f887f82bb5dcee3d.tar.gz Decky-Framegen-ab10c88caa0a03d6aee76d81f887f82bb5dcee3d.zip | |
add env to prep script in py exec
| -rw-r--r-- | main.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -54,7 +54,7 @@ class Plugin: prepare_script = downloads_dir / "prepare.sh" process = subprocess.run( - [str(prepare_script)], + ["/bin/bash", str(prepare_script)], capture_output=True, text=True, timeout=300 @@ -91,7 +91,7 @@ class Plugin: "message": e.stderr } except Exception as e: - decky.logger.error(f"Unexpected error: {str(e)}") + decky.logger.error(f"Unexpected error: {str(e)}") return { "status": "error", "message": str(e) |
