Fix script path

This commit is contained in:
Den Delimarsky 🌺
2025-09-20 12:26:57 -07:00
parent 505b956bfd
commit 3f67cf2f5f
2 changed files with 2 additions and 4 deletions

View File

@@ -12,8 +12,7 @@ function Get-RepoRoot {
}
# Fall back to script location for non-git repos
$scriptDir = Split-Path -Parent $PSScriptRoot
return (Resolve-Path (Join-Path $scriptDir "..")).Path
return (Resolve-Path (Join-Path $PSScriptRoot "../..")).Path
}
function Get-CurrentBranch {