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 <weshaggard@users.noreply.github.com>

---------

Co-authored-by: Ben Broderick Phillips <bebroder@microsoft.com>
Co-authored-by: Wes Haggard <weshaggard@users.noreply.github.com>
This commit is contained in:
Azure SDK Bot 2025-06-03 13:25:07 -07:00 committed by GitHub
parent ac3e303859
commit 3f167b07fd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,6 +1,6 @@
# cSpell:ignore Apireview # cSpell:ignore Apireview
# cSpell:ignore Onboarded # cSpell:ignore Onboarded
$RepoRoot = Resolve-Path "${PSScriptRoot}..\..\..\.." $RepoRoot = Resolve-Path (Join-Path $PSScriptRoot .. .. ..)
$EngDir = Join-Path $RepoRoot "eng" $EngDir = Join-Path $RepoRoot "eng"
$EngCommonDir = Join-Path $EngDir "common" $EngCommonDir = Join-Path $EngDir "common"
$EngCommonScriptsDir = Join-Path $EngCommonDir "scripts" $EngCommonScriptsDir = Join-Path $EngCommonDir "scripts"