We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5663d99 commit 760d7b8Copy full SHA for 760d7b8
1 file changed
.github/workflows/cd-download-grype-scan.yml
@@ -445,7 +445,12 @@ jobs:
445
Get-ChildItem -Path ".\bin" -Recurse -Depth 3
446
# Copy-Item -Path ".\bin" -Destination $ExtractPath -Recurse -Force
447
}
448
- if (Test-Path "C:\opscode\chef") {
+ if (Test-Path "C:\hab\pkgs") {
449
+ Write-Host "Found installation at: C:\hab\pkgs"
450
+ Get-ChildItem -Path "C:\hab\pkgs" -Recurse -Depth 3
451
+ Copy-Item -Path "C:\hab\pkgs" -Destination $ExtractPath -Recurse -Force
452
+ }
453
+ if (Test-Path "C:\opscode\chef") {
454
Write-Host "Found installation at: C:\opscode\chef"
455
Get-ChildItem -Path "C:\opscode\chef" -Recurse -Depth 1
456
Copy-Item -Path "C:\opscode\chef" -Destination $ExtractPath -Recurse -Force
0 commit comments