From b89ee6aa372f03fd10ae13e5af23b44be4456c79 Mon Sep 17 00:00:00 2001 From: Steve Lee Date: Mon, 29 Apr 2024 08:43:53 -0700 Subject: [PATCH] fix how build script finds repo root (#729) Co-authored-by: Steve Lee (POWERSHELL HE/HIM) (from Dev Box) --- contrib/win32/openssh/OpenSSH-build.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/win32/openssh/OpenSSH-build.ps1 b/contrib/win32/openssh/OpenSSH-build.ps1 index 2cfeff5cf..22c6794a8 100644 --- a/contrib/win32/openssh/OpenSSH-build.ps1 +++ b/contrib/win32/openssh/OpenSSH-build.ps1 @@ -1,7 +1,7 @@ [cmdletbinding()] # PowerShell Script to clone, build and package PowerShell from specified fork and branch param ( - [string] $repolocation = "$pwd\openssh-portable", + [string] $repolocation = "$PSScriptRoot\..\..\..", [string] $destination = "$env:WORKSPACE", [ValidateSet('x86', 'x64', 'arm64', 'arm')] [String]$NativeHostArch = 'x64',