Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
remove resolve-path
  • Loading branch information
scbedd authored and azure-sdk committed Nov 4, 2024
commit 4bfeec42a2c5b189572bf8cc7ed270edc068aa79
2 changes: 1 addition & 1 deletion eng/common/scripts/Package-Properties.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ function Get-PrPkgProperties([string]$InputDiffJson) {
$lookup[$lookupKey] = $pkg

foreach ($file in $targetedFiles) {
$filePath = Resolve-Path (Join-Path $RepoRoot $file)
$filePath = (Join-Path $RepoRoot $file)
$shouldInclude = $filePath -like "$pkgDirectory*"
if ($shouldInclude) {
$packagesWithChanges += $pkg
Expand Down