Skip to content

Commit

Permalink
testing: add some debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
leet4tari committed Feb 28, 2025
1 parent 5ed6dc9 commit b42b07a
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/build_binaries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,30 @@ jobs:
runs-on: ${{ matrix.builds.runs-on }}

steps:
- name: List Program Files (x86) and Program Files if they exist
shell: pwsh
run: |
# Traverse and list directories in Program Files and Program Files (x86) using environment variables
$programFiles = $env:ProgramFiles
$programFilesX86 = $env:ProgramFiles(x86)
# List directories in Program Files if it exists
if (Test-Path $programFiles) {
Write-Output "Listing directories in Program Files:"
Get-ChildItem $programFiles -Directory | ForEach-Object { Write-Output $_.FullName }
} else {
Write-Output "Program Files does not exist."
}
# List directories in Program Files (x86) if it exists
if (Test-Path $programFilesX86) {
Write-Output "Listing directories in Program Files (x86):"
Get-ChildItem $programFilesX86 -Directory | ForEach-Object { Write-Output $_.FullName }
} else {
Write-Output "Program Files (x86) does not exist."
}
- name: Find latest signtool.exe
shell: pwsh
run: |
Expand Down

0 comments on commit b42b07a

Please sign in to comment.