Skip to content

Commit fe60b9d

Browse files
fix: Correctly resolve repo root path in setup_local_dev.ps1 script
1 parent 15a180e commit fe60b9d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

infra/scripts/setup_local_dev.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ $ErrorActionPreference = "Stop"
2525
# Resolve repo root (script lives in infra/scripts/)
2626
$ScriptDir = $PSScriptRoot
2727
if (-not $ScriptDir) { $ScriptDir = Get-Location }
28-
$RepoRoot = (Resolve-Path (Join-Path $RepoRoot "..\..")).Path
28+
$RepoRoot = (Resolve-Path (Join-Path $ScriptDir "..\..")).Path
2929
$BackendDir = Join-Path $RepoRoot "src\backend"
3030
$McpDir = Join-Path $RepoRoot "src\mcp_server"
3131
$FrontendDir = Join-Path $RepoRoot "src\App"

0 commit comments

Comments
 (0)