From 3f167b07fd681cf0ecaad904a547a4e8ed150c57 Mon Sep 17 00:00:00 2001 From: Azure SDK Bot <53356347+azure-sdk@users.noreply.github.com> Date: Tue, 3 Jun 2025 13:25:07 -0700 Subject: [PATCH] Sync eng/common directory with azure-sdk-tools for PR 10694 (#6587) * Use correct leading slash in common.ps1 repo root resolution * Update eng/common/scripts/common.ps1 Co-authored-by: Wes Haggard --------- Co-authored-by: Ben Broderick Phillips Co-authored-by: Wes Haggard --- eng/common/scripts/common.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eng/common/scripts/common.ps1 b/eng/common/scripts/common.ps1 index f8fda7e06..6bef283e4 100644 --- a/eng/common/scripts/common.ps1 +++ b/eng/common/scripts/common.ps1 @@ -1,6 +1,6 @@ # cSpell:ignore Apireview # cSpell:ignore Onboarded -$RepoRoot = Resolve-Path "${PSScriptRoot}..\..\..\.." +$RepoRoot = Resolve-Path (Join-Path $PSScriptRoot .. .. ..) $EngDir = Join-Path $RepoRoot "eng" $EngCommonDir = Join-Path $EngDir "common" $EngCommonScriptsDir = Join-Path $EngCommonDir "scripts"