diff options
| author | tranch <tranch.xiao@gmail.com> | 2026-02-03 11:51:06 +0800 |
|---|---|---|
| committer | tranch <tranch.xiao@gmail.com> | 2026-02-03 11:53:43 +0800 |
| commit | cb30744a40cfd3c817c681035a108a8c201ee5f4 (patch) | |
| tree | 6220faf1682d615961874c52d60136547d7b7726 /test.sh | |
| parent | f5b06e10aa0515f12df4f88004fe8ed031c58d3a (diff) | |
| download | decky-installer-cb30744a40cfd3c817c681035a108a8c201ee5f4.tar.gz decky-installer-cb30744a40cfd3c817c681035a108a8c201ee5f4.zip | |
feat: add plugin installer and mock server
Add decky_plugin_installer.py and a Decky mock server for validation, plus related workflow/test updates.
Diffstat (limited to 'test.sh')
| -rwxr-xr-x | test.sh | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -0,0 +1,11 @@ +#!/usr/bin/env bash +set -euo pipefail + +bash -n user_install_script.sh + +python3 mock_decky_server.py </dev/null >> /tmp/mock_decky_server.log 2>&1 & +server_pid=$! +echo "Mock Decky Server is running. Logs are being written to /tmp/mock_decky_server.log" +trap "kill $server_pid" EXIT + +python3 decky_plugin_installer.py |
