1
mirror of https://github.com/carlospolop/PEASS-ng synced 2024-11-24 01:26:22 +01:00

Update CI-master_tests.yml

This commit is contained in:
SirBroccoli 2024-10-01 13:16:13 +02:00 committed by GitHub
parent 6fa12e07f1
commit 6854d3ae30
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -77,13 +77,13 @@ jobs:
Write-Error "winPEAS.exe not found at $exePath" Write-Error "winPEAS.exe not found at $exePath"
} }
- name: Execute winPEAS domain - name: Execute winPEAS cloudinfo
shell: pwsh shell: pwsh
run: | run: |
$Configuration = "Release" $Configuration = "Release"
$exePath = "winPEAS/winPEASexe/winPEAS/bin/$Configuration/winPEAS.exe" $exePath = "winPEAS/winPEASexe/winPEAS/bin/$Configuration/winPEAS.exe"
if (Test-Path $exePath) { if (Test-Path $exePath) {
& $exePath domain & $exePath cloudinfo
} else { } else {
Write-Error "winPEAS.exe not found at $exePath" Write-Error "winPEAS.exe not found at $exePath"
} }