Skip to content

Commit 3f1d943

Browse files
committed
chore: Do not resolve paths.
1 parent 12f8982 commit 3f1d943

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

.azure-pipelines/generation-templates/workload-modules.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,8 @@ steps:
5454
$ModuleMapping.Keys | ForEach-Object {
5555
$ModuleName = $_
5656
$ModulePath = "$(System.DefaultWorkingDirectory)/src/$ModuleName/$ApiVersion"
57-
Write-Host "Checking path: $ModulePath"
58-
$ModulePsd1 = Join-Path $ModulePath "Microsoft.Graph*.$ModuleName.psd1" -Resolve
59-
$ModulePsm1 = Join-Path $ModulePath "Microsoft.Graph*.$ModuleName.psm1" -Resolve
57+
$ModulePsd1 = Join-Path $ModulePath "Microsoft.Graph*.$ModuleName.psd1"
58+
$ModulePsm1 = Join-Path $ModulePath "Microsoft.Graph*.$ModuleName.psm1"
6059
Write-Host "Validating Authenticode Signature for $ModulePsd1"
6160
Write-Host "Validating Authenticode Signature for $ModulePsm1"
6261
if ((Test-Path $ModulePsd1) -and (Test-Path $ModulePsm1)) {

0 commit comments

Comments
 (0)