From bfc559e0bee0b47549363cd4cb29d7a1adcc798b Mon Sep 17 00:00:00 2001 From: Nicole Rappe Date: Fri, 17 Oct 2025 20:54:40 -0600 Subject: [PATCH] fix: include new agent runtime files in installer copy --- Borealis.ps1 | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/Borealis.ps1 b/Borealis.ps1 index 068955e..47d8502 100644 --- a/Borealis.ps1 +++ b/Borealis.ps1 @@ -784,13 +784,19 @@ function InstallOrUpdate-BorealisAgent { # Copy Agent Files to Virtual Python Environment $coreAgentFiles = @( - (Join-Path $agentSourceRoot 'agent.py'), (Join-Path $agentSourceRoot 'Python_API_Endpoints'), + (Join-Path $agentSourceRoot 'Roles'), + (Join-Path $agentSourceRoot 'Scripts'), (Join-Path $agentSourceRoot 'agent_deployment.py'), + (Join-Path $agentSourceRoot 'agent.py'), + (Join-Path $agentSourceRoot 'ansible-ee-version.txt'), (Join-Path $agentSourceRoot 'Borealis.ico'), + (Join-Path $agentSourceRoot 'fcntl_stub.py'), (Join-Path $agentSourceRoot 'launch_service.ps1'), (Join-Path $agentSourceRoot 'role_manager.py'), - (Join-Path $agentSourceRoot 'Roles') + (Join-Path $agentSourceRoot 'security.py'), + (Join-Path $agentSourceRoot 'sitecustomize.py'), + (Join-Path $agentSourceRoot 'termios_stub.py') ) Copy-Item $coreAgentFiles -Destination $agentDestinationFolder -Recurse -Force