Skip to content

Commit 5e58310

Browse files
benbpweshaggard
andauthored
Use correct leading slash in common.ps1 repo root resolution (#10694)
* 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: Wes Haggard <weshaggard@users.noreply.github.com>
1 parent 2b74ee5 commit 5e58310

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

eng/common/scripts/common.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# cSpell:ignore Apireview
22
# cSpell:ignore Onboarded
3-
$RepoRoot = Resolve-Path "${PSScriptRoot}..\..\..\.."
3+
$RepoRoot = Resolve-Path (Join-Path $PSScriptRoot .. .. ..)
44
$EngDir = Join-Path $RepoRoot "eng"
55
$EngCommonDir = Join-Path $EngDir "common"
66
$EngCommonScriptsDir = Join-Path $EngCommonDir "scripts"

0 commit comments

Comments
 (0)