From 9bc04ef9206c0984bf151b59f865a3efe36d9888 Mon Sep 17 00:00:00 2001 From: Nicole Rappe Date: Sun, 5 Oct 2025 17:08:37 -0600 Subject: [PATCH] Fix Join-Path usage when locating agent settings --- Update.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Update.ps1 b/Update.ps1 index 88f9634..d21571e 100644 --- a/Update.ps1 +++ b/Update.ps1 @@ -118,8 +118,8 @@ function Get-AgentServiceId { if (-not $AgentRoot) { $AgentRoot = $scriptDir } $settingsDir = Join-Path $AgentRoot 'Settings' $candidates = @( - Join-Path $settingsDir 'agent_settings_svc.json', - Join-Path $settingsDir 'agent_settings.json' + (Join-Path $settingsDir 'agent_settings_svc.json') + (Join-Path $settingsDir 'agent_settings.json') ) foreach ($path in $candidates) {