Skip to content

Commit

Permalink
Fix for checker.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ryanb58 committed Jun 6, 2023
1 parent 2111243 commit 13c3b10
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-and-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:

- name: Check Solutions
run: |
Get-ChildItem -Recurse -Filter "**/bin/Release/*.zip" |
ForEach-Object {
pac solution check --path $_.FullName
}
Get-ChildItem -Path '.' -Directory -Recurse |
Where-Object { $_.FullName.EndsWith('bin\Release') } |
ForEach-Object { Get-ChildItem -Path (Join-Path $_.FullName '*.zip') |
ForEach-Object { pac solution check --path $_.FullName } }

0 comments on commit 13c3b10

Please sign in to comment.