Skip to content
This repository was archived by the owner on Jun 14, 2024. It is now read-only.

Commit 05935a1

Browse files
Fix path in compliance task (#12)
1 parent c18c12e commit 05935a1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

yaml/template/compliance.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ steps:
66
artifact: symbols
77

88
- pwsh: |
9-
$bin = New-Item '$(Pipeline.Workspace)\bin' -ItemType Directory
9+
$bin = New-Item '$(Pipeline.Workspace)\PagerBin' -ItemType Directory -Force
1010
Copy-Item -Path "$(Pipeline.Workspace)\assembly\Microsoft.PowerShell.Pager.dll" -Destination $bin -Verbose
1111
Copy-Item -Path "$(Pipeline.Workspace)\symbols\Microsoft.PowerShell.Pager.pdb" -Destination $bin -Verbose
1212
@@ -24,7 +24,7 @@ steps:
2424
displayName: 'Run BinSkim '
2525
inputs:
2626
InputType: Basic
27-
AnalyzeTarget: '$(Pipeline.Workspace)\bin\Microsoft.PowerShell.Pager.dll'
27+
AnalyzeTarget: '$(Pipeline.Workspace)\PagerBin\Microsoft.PowerShell.Pager.dll'
2828
AnalyzeSymPath: 'SRV*'
2929
AnalyzeVerbose: true
3030
AnalyzeHashes: true

0 commit comments

Comments
 (0)