From cb30744a40cfd3c817c681035a108a8c201ee5f4 Mon Sep 17 00:00:00 2001 From: tranch Date: Tue, 3 Feb 2026 11:51:06 +0800 Subject: feat: add plugin installer and mock server Add decky_plugin_installer.py and a Decky mock server for validation, plus related workflow/test updates. --- test.sh | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100755 test.sh (limited to 'test.sh') diff --git a/test.sh b/test.sh new file mode 100755 index 0000000..1e69371 --- /dev/null +++ b/test.sh @@ -0,0 +1,11 @@ +#!/usr/bin/env bash +set -euo pipefail + +bash -n user_install_script.sh + +python3 mock_decky_server.py > /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 -- cgit v1.2.3