From b390513ad14deb3aee3080563871d2ec3f17c2da Mon Sep 17 00:00:00 2001 From: Prabhaav Pillai Date: Wed, 2 Sep 2026 23:59:25 -0400 Subject: [PATCH] Add command to launch local Galaxy web UI in host_tool_runner.sh --- scripts/host_tool_runner.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/scripts/host_tool_runner.sh b/scripts/host_tool_runner.sh index 10a00d1eb..e4537d83d 100755 --- a/scripts/host_tool_runner.sh +++ b/scripts/host_tool_runner.sh @@ -26,6 +26,7 @@ Usage: Commands: c3 Launch the large raylib UI from the isolated host cache. c4 Launch the small raylib UI from the isolated host cache. + galaxy Launch the local Galaxy web UI from the isolated host cache. onroad Launch replay plus desktop UI(s) from the isolated host cache. replay Build and run replay from the isolated host cache. cabana Build and run cabana from the isolated host cache. @@ -629,7 +630,7 @@ main() { help|-h|--help) usage ;; - c3|c4|onroad|replay|shell|python|pytest) + c3|c4|galaxy|onroad|replay|shell|python|pytest) set_host_bucket "shared" acquire_host_lock "${command} $*" ;; @@ -670,6 +671,9 @@ main() { c4) launch_c4 "$@" ;; + galaxy) + launch_galaxy "$@" + ;; onroad) launch_onroad "$@" ;;